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.

link|improve this question

70% accept rate
Have you run though the https://api.login.yahoo.com/oauth/v2/get_request_token procedure before calling https://api.login.yahoo.com/oauth/v2/request_auth? and finally heading to https://api.login.yahoo.com/oauth/v2/get_token for the actual access_token? One common issue is to mix-up request_token as access_token. – Alvin K. Nov 20 '11 at 23:44
Yep, I'm getting the request token and the access token and using the access token to authenticate. – Cory Nov 20 '11 at 23:49
If access_token is ok, the only little error is a missing "(" in resp, 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
feedback

1 Answer

up vote 0 down vote accepted

Well I feel a bit sheepish. So it turns out that Yahoo also throws this exact error when you access an invalid API call. So in my case I was accessing a root API when I had to specify a sub API. Moral of the story: beware that oauth errors might be representative of other issues in your app/code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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