aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oauth.c
Commit message (Collapse)AuthorAgeLines
* Escaping in oauth_nonce(). Not sure if the escaping is entirely right ATM...Wilmer van der Gaast2010-04-26-1/+6
| | | | | :-(
* OAuth, it lives!Wilmer van der Gaast2010-04-26-1/+13
|
* Twitter module now generates authorize URLs.Wilmer van der Gaast2010-04-26-4/+4
|
* Moving two public OAuth functions into the header file.Wilmer van der Gaast2010-04-26-16/+1
|
* Successfully posted a tweet!Wilmer van der Gaast2010-04-26-17/+23
| | | | | | | | | | Twitter's tricky. It returns vars (user_id, screen_name) in the access token that, the way I read the spec, should be included in all subsequent queries. However, stuff only started to work when I dropped those vars. This code's definitely not pretty ATM. Need to clean up now that it actually works.
* Added a function that generates an OAuth Authorization: HTTP header.Wilmer van der Gaast2010-04-26-13/+79
|
* oauth_access_token() added. I managed to increase the counter onWilmer van der Gaast2010-04-25-4/+22
| | | | | http://twitter.com/oauth_clients/details/127170 . \o/
* Some HTTP stuff. Via gdb I can make this request a token.Wilmer van der Gaast2010-04-25-6/+212
|
* Code to calculate OAuth signatures. I hope that after wrapping my mindWilmer van der Gaast2010-04-25-0/+106
around all of this the rest is going to be easier..