[twitter-dev] Better understanding of 'signature'

2010-01-22 Thread eco_bach
Hi My OAuth sign In process is failing to verify my signature, so I thought I should at least ensure I understand the meaning of the term. Every time my web application launches, it generates a unique signature, which doesn't change for the current session. ie, if I quit the application, then

Re: [twitter-dev] Better understanding of 'signature'

2010-01-22 Thread Abraham Williams
The signature should be generated for every single request to the Twitter API. It is based on your request URL and parameters. You can read a detailed explanation here http://tools.ietf.org/html/draft-hammer-oauth-08#page-19. Abraham On Fri, Jan 22, 2010 at 11:11, eco_bach bac...@gmail.com

Re: [twitter-dev] Better understanding of 'signature'

2010-01-22 Thread ryan alford
That is one of your problems. The signature needs to be created for each request. Here is how I do it in C#. I know it's not the language you are using, but hopefully it will help on how to create the signature. Then you can use similar libraries in Flash(if there are similar libraries) to make