aplavin
aplavin

Reputation: 2229

Google Reader OAuth mark as read

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

Answers (1)

aplavin
aplavin

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

Related Questions