Reputation: 2229
I'm using Google Reader API (unofficial) and OAuth authentification. All GET requests work fine, but not POST ones (such as marking an entry as read) - they return 401 error without further explanation. I tried this in code (C#) and in Google OAuth Playground and get the same 401 error. What exactly request should I send to Google Reader to mark an entry as read?
Upvotes: 0
Views: 531
Reputation: 2229
Problem is solved by using Google experimental OAuth2 authorization, which docs can be found at http://code.google.com/apis/accounts/docs/OAuth2.html . Self-implementing this protocol wasn't as difficult as I've thought =)
Upvotes: 1