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 do I start in the API (public or 'unofficial') to get this built?

-- Update --

I've found some limited documentation regarding authentication protocols, but I've been unable to implement anything. I can parse a URL to authenticate and get an SSID that works when directly placed in a browser, but both GET and POST requests fail via PHP, so I can't get any further than that.

-- Update --

I've converted the first few steps of Martin Doms' C# tutorial into PHP for anyone who's interested in doing this on their own site.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted
+100

Here's a nice 3-step tutorial: http://blog.martindoms.com/2009/08/15/using-the-google-reader-api-part-1/

If you're having problems from PHP, then I think you should post the PHP code to see where it's failing. These steps should work flawlessly.

link|improve this answer
I actually started with that tutorial. And the problem with PHP isn't actually a problem with PHP ... it's a problem with authentication in general (possibly from my domain, but I'm not sure ...) I ported the C# code to PHP, and the issue occurs in the getSID() function. I can use the parsed URL (google.com/accounts...) directly in a web browser to return an SID and LSID, but both POST and GET requests via PHP throw an HTTP security violation. – EAMann May 17 '10 at 20:25
How are you doing those POST and GET from PHP? Using cURL function to do a GET should work just fine (us2.php.net/manual/en/function.curl-exec.php). If you're still having problems, posting your current code may help. – Seb May 17 '10 at 20:40
I'll try again with cURL and let you know what happens. – EAMann May 17 '10 at 21:01
1  
I've also added a PHP version of Martin Doms' tutorial on my own site: mindsharestrategy.com/google-reader-api-a-brief-tutorial – EAMann May 21 '10 at 15:17
1  
The site went dead.. Anyone knows where can i find this tut (i'm more of a c# guy :) thanks. – Nimrod Shory Aug 29 '10 at 9:47
show 5 more comments
feedback

I can add some extra resources, especially the ones that resemble the most a structured documentation for this unofficial API:

Hope it helps!

link|improve this answer
The Google group 'fourgrapi' is a great resource for questions that will pop-up when trying to interface with Google Reader. Thanks! +1 for sharing that – bhavinb Oct 19 '11 at 11:49
feedback

Following up on EAMann his PHP class is here http://code.google.com/p/greader-library/source/browse/trunk/greader.class.php?r=4. I got it working last night. Thank you Eric, I will be adding to your library.

link|improve this answer
Feel free to submit patches to the Issues section on Google Reader as well. Anything you can contribute will help make the library stronger! – EAMann Dec 27 '10 at 20:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.