Re: [twitter-dev] oauth_signature

2010-08-17 Thread Abraham Williams
My library handles all the OAuth signatures automatically. If you read the
documentation for TwitterOAuth it will get you started with using the
library.

Abraham
-
Abraham Williams | Hacker Advocate | http://abrah.am
@abraham | http://projects.abrah.am | http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.


On Mon, Aug 16, 2010 at 03:36, alex aakba...@gmail.com wrote:

 still confused about oauth_signature. what is oauth_signature? who
 generate oauth_signature? If it is consumer, how to generate
 oauth_signature ? Im using Abraham's PHP library TwitterOAuth


Re: [twitter-dev] oauth_signature

2010-08-16 Thread Tom van der Woerdt
On 8/16/10 12:36 PM, alex wrote:
 still confused about oauth_signature. what is oauth_signature? who
 generate oauth_signature? If it is consumer, how to generate
 oauth_signature ? Im using Abraham's PHP library TwitterOAuth

OAuth signature is a short hash created from the data you are sending to
Twitter. You generate it by generating the Base String, and taking the
HMAC-SHA1 of this, using both your consumer key and the user's key
(resource owner's key, as the RFC calls them).

I have no idea how to do this with Abraham's PHP library, but I'm sure
that it is a lot easier than the way I just described (which is already
easy).

Tom