up vote 1 down vote favorite
share [g+] share [fb]

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!? :)

link|improve this question

80% accept rate
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 '09 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 '09 at 23:32
Was a solution found or was the OP hit by a bus? 1 or 2 hours has turned into 4 months :) – Ben Feb 24 '10 at 22:53
2  
Nah, not hit by a bus. Although that would have been pretty apt given how annoying this process was. The project got cut due to this not working out and the budget blowing out. – navitronic Mar 9 '10 at 3:05
There's actually some really good wiki on 2-legged requests for this specific library at code.google.com/p/oauth-php/wiki/ConsumerHowTo but sorry to be a bit late :) – Pete Herbert Penito Aug 25 '10 at 20:58
feedback

1 Answer

This little example might help http://developer.yahoo.net/blog/archives/2010/04/a_twolegged_oauth_serverclient_example.html

link|improve this answer
That example seem to request a key on itself, I seem no where any real API EndPoint, it's always the current script. Still looking for a plain simple example in pure php. – FMaz008 Sep 29 '11 at 12:48
feedback

Your Answer

 
or
required, but never shown

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