vote up 0 vote down star

I am currently stuck trying to make requests to a service's api using a 2 legged oAuth request using PHP.

I am using the PHP library found here: http://code.google.com/p/oauth-php/ and there seems to be absolutely no documentation anywhere online for using this library for a 2 legged request.

So currently from the service I have the following details:

  • $consumer_key - needs to be an empty string
  • $consumer_secret - needs to be an empty string
  • $access_token - my login name
  • $access_token_secret - your generated application token

And I want to be able to make a request to:

http://foo.com/api/test/whoami

To test that the authentication is working correctly so I can use the rest of the api.

Anybody got any pointers on how to use that php library to achieve this? or are there better methods for a simple 2 legged call like this?

Help!? :)

flag
1  
What do you mean by "needs to be an empty string" for the key/secret? You need some value there to be able to sign the request. Also, you usually wouldn't use the access token/token secret for a 2 legged request - you just sign the params with the secret – madlep Oct 4 at 10:09
The service I am authenticating against requires an empty consumer key and consumer secret to work. I am not sure why this is the case, I have almost worked out the issues though, hopefully will be able to formulate an answer to my own question in an hour or two... – navitronic Oct 4 at 23:32

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.