I'm trying to integrate an application with a Yahoo! api that requires oauth authentication to access protected data.
I'm using python-oauth2 and following along with the steps listed in Yahoo's Oauth Authorization Flow document. I've been able to complete all of the steps to negotiate an access token with Yahoo, but do not seem to be able to use the token to authenticate.
Here is my code:
import oauth2 as oauth
def list_users(token):
# token is the access token i save in the DB
oauth_token = oauth.Token(token.token, token.secret)
consumer = oauth.Consumer(key=settings.OATH_CONSUMER_KEY,
secret=settings.OATH_SECRET)
client = oauth.Client(consumer, oauth_token)
resp, content = client.request((LIST_USERS_URL), "GET")
return content
However, all I'm able to get back is an error message that says "Please provide valid credentials. OAuth oauth_problem="signature_invalid", realm="yahooapis.com""
What am I doing wrong here? Everything else worked smoothly up to this point.
https://api.login.yahoo.com/oauth/v2/get_request_tokenprocedure before callinghttps://api.login.yahoo.com/oauth/v2/request_auth?and finally heading tohttps://api.login.yahoo.com/oauth/v2/get_tokenfor the actual access_token? One common issue is to mix-up request_token as access_token. – Alvin K. Nov 20 '11 at 23:44resp, content = client.request(LIST_USERS_URL), "GET"). The last thing to check is application scopes, is it correct during registration? – Alvin K. Nov 21 '11 at 0:42