google-reader

Retrieving Google Reader stats for RSS feed and items

早过忘川 提交于 2019-12-11 02:51:34
问题 I would like to programmatically retrieve Google Reader's feed stats for my own site's RSS feed. In particular, I'd like to get the "liked" count, to incorporate it into scoring feed items. Any idea how to do this? 回答1: You can get stats (such as subscribercount) using the following URL: http://www.google.com/reader/api/0/stream/details?s=feed/[your feed url here] You can get likes for your feed items using the following URL (): http://www.google.com/reader/atom/feed/[your feed url here] 回答2:

How to send authenticated requests to Google Reader?

放肆的年华 提交于 2019-12-11 01:45:02
问题 It seems that Google has disabled the old way of sending cookie SID to their Google Data Services, specifically Google Reader. This way does not work at least for me: //create request NSString* content = [NSString stringWithFormat:@"accountType=HOSTED_OR_GOOGLE&Email=%@&Passwd=%@&service=ah&source=myapp", [loginView username].text, [loginView password].text]; NSURL* authUrl = [NSURL URLWithString:@"https://www.google.com/accounts/ClientLogin"]; NSMutableURLRequest* authRequest = [

Does the Google Reader API token expire?

ε祈祈猫儿з 提交于 2019-12-10 10:14:38
问题 Ok, so I have an app that hooks in pretty deeply with GR's "api". Everything is working nicely, BUT lately I have been getting permission denied returns from Google. If I log out of GR and log back in with my app it all starts working again. This leads me to believe that the authorization token GR gives you when you log in expires after a month or so. Has anyone else run into this? If you have, what is the best way to deal with it. I REALLY don't want to have to store people's Google account

Using Google Reader API and OAuth in iPhone app

坚强是说给别人听的谎言 提交于 2019-12-09 05:00:29
问题 I want to make an app that uses on the Google Reader API. But I'm finding out that there isn't an offical API for it - is there a problem using the unofficial API, in terms of App Store guidelines/approval? Would other apps (Reeder, etc) use this? Also what is the best method for logging in? Is OAuth the preffered method? Is using Janrain a good idea? 回答1: Frankly Apple doesn't care if you use Google's unofficial API. I worked for a customer on a RSS reader app that used Google Reader for

Where to start with Google Reader as an API?

a 夏天 提交于 2019-12-08 22:47:37
问题 I want to build a widget for WordPress that simultaneously displays my latest Google Reader items on the front page and allows for management from behind the WordPress dashboard. I can already add my "shared" items using code I've found in various Google searches, but that's not exactly what I'm looking for. I like the functionality of the Google Reader widget in iGoogle, and I want to replicate that on the WordPress dashboard and build a read-only version for the WordPress front-end. Where

Google Reader API: Continuation for stream/items/ids

南笙酒味 提交于 2019-12-08 14:35:27
Is there any way to get continuation for /api/0/stream/items/ids like /api/0/stream/contents/ ? If no, how can I get next item-ids of a stream? Or is there any way to convert item-id/timestamp to continuation? The /api/0/stream/items/ids endpoint supports an nt parameter that you can use to get increasingly older items. You can take the timestamp (in microseconds) of the oldest item that you already have, convert it to seconds, and then pass it in as a the ot parameter. See this page for the full list of parameters that are supported. 来源: https://stackoverflow.com/questions/7423670/google

Google Reader API - get subscribers

若如初见. 提交于 2019-12-08 08:24:56
问题 Anyone know the http request in order to find the subscriber count for a subscription? Something similar to http://www.google.com/reader/api/0/unread-count?all=true must exist for subscribers, no? 回答1: This is what Reader uses to fill in the data in the "show details" UI for a particular feeed: http://www.google.com/reader/api/0/stream/details?s=feed/http://blog.stackoverflow.com/feed/&output=json&fetchTrends=false Specifically, you'd want the "subscribers" property in the JSON output. The

Why am I getting a 401 (Unauthorized) error when POSTing to Google Reader API?

♀尐吖头ヾ 提交于 2019-12-08 07:04:00
问题 I'm trying to interface with the Google Reader (undocumented/unofficial) API using information from this page. My first step is to get a SID and token, which works fine, but I can't seem to POST anything without getting a 401 error. Here is the code I'm using to get my SID and token: static string getSid() { HttpWebRequest req = (HttpWebRequest)WebRequest.Create("https://www.google.com/accounts/ClientLogin?service=reader&Email=username&Passwd=password"); req.Method = "GET"; string sid;

Google Reader API: Continuation for stream/items/ids

送分小仙女□ 提交于 2019-12-08 04:18:51
问题 Is there any way to get continuation for /api/0/stream/items/ids like /api/0/stream/contents/ ? If no, how can I get next item-ids of a stream? Or is there any way to convert item-id/timestamp to continuation? 回答1: The /api/0/stream/items/ids endpoint supports an nt parameter that you can use to get increasingly older items. You can take the timestamp (in microseconds) of the oldest item that you already have, convert it to seconds, and then pass it in as a the ot parameter. See this page for

Authenticating with ClientLogin and using the Google Reader API in Android

霸气de小男生 提交于 2019-12-08 03:00:35
问题 I have to post a message from my android application to Google Reader . I'm Authenticating with ClientLogin and using the Google Reader API.When I'm trying to send the authentication request it's giving an error. HTTP/1.1 404 Not Found I think the client was able to communicate with the server but the server could not find what was requested.I'm giving the following url postURL = "http://www.google.com/reader/api/0/edit" as HttpPost post = new HttpPost(postURL);. Please tell me the solution