google-reader

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

喜你入骨 提交于 2019-12-07 15:36:31
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; HttpWebResponse response = (HttpWebResponse)req.GetResponse(); using (var stream = response

How can I can I programatically post a note to Google Reader?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-07 11:15:29
问题 I use my Google Reader notes as a place to store bookmarks and small snippets of information. I would like to write a small script to let me post notes from the command line (I prefer Python,but an answer using any language will be accepted). This project seemed to be a be a good place to start & some more up-to-date information here. The process appears to be: Get a SID (session ID) from https://www.google.com/accounts/ClientLogin?service=reader&Email={0}&Passwd={1} Get a temporary token

Authenticating with ClientLogin and using the Google Reader API in Android

房东的猫 提交于 2019-12-06 13:42:58
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 to resolve this issue. ptdev If you're using ClientLogin you will probably need only 2 kinds of tokens

How can I can I programatically post a note to Google Reader?

China☆狼群 提交于 2019-12-05 18:00:46
I use my Google Reader notes as a place to store bookmarks and small snippets of information. I would like to write a small script to let me post notes from the command line (I prefer Python,but an answer using any language will be accepted). This project seemed to be a be a good place to start & some more up-to-date information here . The process appears to be: Get a SID (session ID) from https://www.google.com/accounts/ClientLogin?service=reader&Email= {0}&Passwd={1} Get a temporary token from http://www.google.com/reader/api/0/token Make a POST to http://www.google.com/reader/api/0/item

How to read all shared google reader feeds by code?

橙三吉。 提交于 2019-12-03 20:26:10
I share a lot of feeds on my google reader, i want some code using asp.net to read all these feeds and put in a page, may be with paging because feeds are too much. Any one know how to do so?, or if there is a tool for that You can use the RSSToolkit to read the shared feeds You can find a Atom feed for you feeds here: http://www.google.com/reader/atom/ You can find a more specific url, if you login into Google Reader and click the RSS button, in the top of your browser. Then you just need something to read your feeds. Here's a third party library for that purpose. http://atomnet.sourceforge

Native Google Reader iPhone Application

核能气质少年 提交于 2019-12-03 08:51:37
问题 I am currently in the process of building a native Google Reader iPhone application similar to the successful application "Reeder for iPhone", however, with a full Twitter client inbuilt as well. I have finished the Twitter client and am now struggling to start the Google Reader client. I've browsed through multiple documents and have taken a look at the gdata-objective-client samples, yet I still can't seem to understand what I have to do to accomplish the same functionality as Reeder does.

How to integrate Google Reader in Android Application?

与世无争的帅哥 提交于 2019-12-03 05:06:22
I want to integrate Google Reader in my android application. Please help me on how to do this? Hope this helps: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); try{ String auth = getGoogleAuthKey("<your gmail email address>","<your password>"); String token = getGoogleToken(auth); String result = postToGoogleReader(token, auth); TextView tv = (TextView) findViewById(R.id.textView1); tv.setText(result); }catch(Exception e){ } } protected String getGoogleAuthKey(String _USERNAME, String _PASSWORD) { String

Using Google Reader API and OAuth in iPhone app

て烟熏妆下的殇ゞ 提交于 2019-12-03 04:02:10
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? 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 syncing. We didn't use OAuth but the standard HTTP login which returns you a cookie where you'll have to

Error in accessing google reader's Endpoints API

爷,独闯天下 提交于 2019-12-02 19:38:09
问题 I am trying to implement google reader in iPhone APP and so far I have successfully received the sid and auth . The problem arises when I try to call the Endpoints API with GET .. Here's the code: ASIHTTPRequest *request = [self requestForAPIEndpoint:@"https://www.google.com/reader/api/0/subscription/list?output=json"]; [request setDelegate:self]; [request startAsynchronous]; - (ASIHTTPRequest *) requestForAPIEndpoint: (NSString *) apiEndpoint { ASIHTTPRequest *request = [ASIHTTPRequest

Error in accessing google reader's Endpoints API

蹲街弑〆低调 提交于 2019-12-02 11:07:07
I am trying to implement google reader in iPhone APP and so far I have successfully received the sid and auth . The problem arises when I try to call the Endpoints API with GET .. Here's the code: ASIHTTPRequest *request = [self requestForAPIEndpoint:@"https://www.google.com/reader/api/0/subscription/list?output=json"]; [request setDelegate:self]; [request startAsynchronous]; - (ASIHTTPRequest *) requestForAPIEndpoint: (NSString *) apiEndpoint { ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString: apiEndpoint]]; [request addRequestHeader: @"User-Agent" value: @