Why i got this error when i use following code?

$customer_key = 'my_key';
$customer_securet = 'customer_securet';                
$a = new Oauth($customer_key, $customer_securet, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_AUTHORIZATIONl);
$a->getRequestToken('https://api.login.yahoo.com/oauth/v2/get_request_token?oauth_callback=http://mysite.com/invitehandler.php?provider=yahoo');

Error : Invalid auth/bad request (got a 401, expected HTTP/1.1 20X or a redirect)

link|improve this question

78% accept rate
That error usually means the OAuth request was not properly signed. Which OAuth library are you using? Also, it could be the the format of your request URL: the "?provider=yahoo" part should be "&provider=yahoo". – BrianC Jan 12 at 18:28
feedback

1 Answer

up vote 1 down vote accepted

I found my problem myself..

Its just needed update server time!

link|improve this answer
Yes! Been looking for that solution for so long. Stupid VM clock... – huyz Mar 13 at 1:18
How would I update the server clock? I'm having the same issue. – Brett May 3 at 21:50
@Brett: im using this code ntpdate ro.pool.ntp.org to update my server time. – hamidreza66 May 5 at 9:52
feedback

Your Answer

 
or
required, but never shown

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