Adding Notes Using Google Reader's API [closed] - api

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Does anyone know how to add a note using Google Reader's API? In looking at some of their code, I've noticed that it might have something to do with the "/reader/api/0/item/edit" URL, but I can't find this documented anywhere.

The answer above is missing the full set of query parameters.
They are documented here: http://www.google.com/support/reader/bin/answer.py?hl=en&answer=147149

Do a POST to http://www.google.com/reader/api/0/item/edit
You'll need to add your SID cookie, and also get a token from the API for it to work.
Params are:
T = token string
share = make the note public, "true" or "false" values
snippet = the body of the note
There's also a "linkify" parameter, although I haven't been able to figure out yet what that one actually does.

Here is what works for me:
POST http://www.google.com/reader/api/0/item/edit
ck=<time>
client=<client>
share=true
annotation=<text>
T=<token>
srcItemId=<itemid>

Related

Recent Documents [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Searched everywhere but didn't find a way of doing this in sandbox:
How can I get a list of all the recent files (system wide) in osx ?
They are stored in ~/Library/Preferences/com.apple.recentitems.plist file.
You need the temporary entitlement com.apple.security.temporary-exception.files.home-relative-path.read-only = Library/Preferences
you need to manually read the plist using NSDictionary because the CFPrefs API fails -> it always tries to open the pref in your sandbox folder and you cannot specific a PATH for the file
The way that doesn't involve hard-coding pathnames would be to use LSSharedFileList. The list in question is kLSSharedFileListRecentDocumentItems.
If the list is incomplete or the sandbox blocks access to it, I recommend filing a bug.

web Service With Objective-c [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In My App I Wanna retrieve All Stores Near To The Curent Location in Egypt .
i used Google Places API But It Doesn't Give Me What I Need And It Has Only 20 Store .
any One Can Help Me With Web Service free Or Data Bas I Can Access .
Thanks In Advance
If that data does not exist in any form other than Google Places API you may be out of luck. I would recommend this site to search for APIs. http://www.programmableweb.com/apis
If programmableweb.com doesn't help I would recommend seeking out a company that perhaps creates business directories for Egypt. Assuming they are willing to work with you, you may end up needing to build the API all on your own.

Openstreetmap headers and contact infos [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying setting up headers for Openstreetmap. I use AJAX to send requests.
Which HTTP header field is used for contacts? I thought it was "From" but the request doesn't allow that field.
Any suggestions?
So from your clarification about it sounds like you are probably talking about one of our usage policies:
http://wiki.openstreetmap.org/wiki/API_usage_policy
http://wiki.openstreetmap.org/wiki/Tile_usage_policy
http://wiki.openstreetmap.org/wiki/Nominatim_usage_policy
The only one which explicitly talks about contact information seems to be the Nominatim one for the geocoder, though all require a valid User-Agent header to help us identify any problem users.
The best way to send the contact information requested by the Nominatim policy is probably as part of the User-Agent though using a URL parameter will work fine as well - anything that lets the administrators work out who you are from the logs if there is a problem basically.

Dynamic code generation and execution without writing code to database [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is it possible to generate ABAP code and execute it in memory without writing code to DB?
Yes. Use Google. Use Google. Use Google. Use Google. Use Google. (I have to write at least 30 characters although I really don't have anything else to say besides that wanting to generate code dynamically is usually a sign you're on the wrong track.)

How to write script for posting your geo location to a website? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
You see it everywhere these days...
Facebook will display your geo location along with your status update. "John Doe says this...near Austin, Tx"
In Google maps you can click the "round dot" and it will show you where you are geographically and allow you to create your direction around that.
What's the coding behind it? I'd like to start implementing this into a few things (more so how facebook does it). Does anyone have an idea? I'm guessing a combo between php, javascript, Database (ajax) and perhaps a "GEO api" of some sorts... Along with w/ some good ol' fashion html/css.
Am I on the right thinking path here?
It's the Geolocation API . Have a look here: http://html5doctor.com/finding-your-position-with-geolocation/