Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Add better handling of HTTP/1.1 and/or keepalive connections. This should | Wilmer van der Gaast | 2013-06-09 | -1/+0 |
| | | | | | | let me close #641, and more importantly, prepares the Twitter module for an upcoming API change. https://dev.twitter.com/blog/deprecating-http-1.0-streaming-api | |||
* | Fixed a bug that probably (can't test this now since it's down) broke OAuth | Wilmer van der Gaast | 2011-12-21 | -0/+2 |
| | | | | | setup for identi.ca. Turning on oauth for identi.ca accounts by default now. | |||
* | Use sha1_hmac() instead of reimplementing the algorithm in oauth_sign(). | Wilmer van der Gaast | 2011-12-21 | -42/+9 |
| | ||||
* | Give a list of SASL mechanisms supported by a server when reporting we don't | Wilmer van der Gaast | 2011-12-19 | -1/+1 |
| | | | | | support any of them. | |||
* | Facebook OAuth2 should now be fully usable. | Wilmer van der Gaast | 2011-12-19 | -0/+6 |
| | ||||
* | OAuth code cleanup. | Wilmer van der Gaast | 2011-07-31 | -0/+3 |
| | ||||
* | Export oauth_params_parse(). | Wilmer van der Gaast | 2011-07-31 | -1/+1 |
| | ||||
* | Send Connection: close headers so webservers won't try keepalive connections | Wilmer van der Gaast | 2011-04-18 | -0/+1 |
| | | | | | which http_client really can't deal with. | |||
* | Tweaks to allow authenticating to identi.ca with OAuth. Doesn't seem to work | Wilmer van der Gaast | 2011-03-27 | -2/+6 |
| | | | | | | | completely for whatever the reason may be (invalid signature). I give up for now. Stuff does actually work if you generate access tokens using different software so BitlBee's definitely able to generate good signatures. | |||
* | Twitter: Warn the user if the OAuth username and the configured username | Wilmer van der Gaast | 2011-03-07 | -6/+5 |
| | | | | | | don't match. This is not a real problem but can be confusing if you don't expect it. | |||
* | OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@opencsw.org> | Wilmer van der Gaast | 2010-08-07 | -1/+1 |
| | | | | | with some changes. | |||
* | OAuth sanity fix: Twitter-specific stuff should *not* be in lib/oauth.c. | Wilmer van der Gaast | 2010-05-02 | -52/+66 |
|\ | | | | | | | | | Somewhat intrusive, should've done this right immediately. :-/ | |||
| * | Save the credentials again. | Wilmer van der Gaast | 2010-05-01 | -0/+27 |
| | | ||||
| * | Cleaned up OAuth stuff: consumer key/secret should *not* be in lib/oauth.c. | Wilmer van der Gaast | 2010-05-01 | -52/+39 |
|/ | | | | | | Keep it in the Twitter module, and use the oauth_info struct through the whole session to keep all this together. | |||
* | NULL-initialize two vars that weren't and should. | Wilmer van der Gaast | 2010-04-30 | -1/+1 |
| | ||||
* | Valgrind-clean now. And decent handling of errors (wrong PIN). | Wilmer van der Gaast | 2010-04-27 | -1/+3 |
| | ||||
* | Valgrind cleanup. | Wilmer van der Gaast | 2010-04-27 | -6/+34 |
| | ||||
* | The escaping, I fixed it for you. More expensive code this way and most of | Wilmer van der Gaast | 2010-04-27 | -18/+23 |
| | | | | | the vars don't need escaping. But this shouldn't be so fragile anymore. | |||
* | Escaping in oauth_nonce(). Not sure if the escaping is entirely right ATM... | Wilmer van der Gaast | 2010-04-26 | -1/+6 |
| | | | | | :-( | |||
* | OAuth, it lives! | Wilmer van der Gaast | 2010-04-26 | -1/+13 |
| | ||||
* | Twitter module now generates authorize URLs. | Wilmer van der Gaast | 2010-04-26 | -4/+4 |
| | ||||
* | Moving two public OAuth functions into the header file. | Wilmer van der Gaast | 2010-04-26 | -16/+1 |
| | ||||
* | Successfully posted a tweet! | Wilmer van der Gaast | 2010-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 Gaast | 2010-04-26 | -13/+79 |
| | ||||
* | oauth_access_token() added. I managed to increase the counter on | Wilmer van der Gaast | 2010-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 Gaast | 2010-04-25 | -6/+212 |
| | ||||
* | Code to calculate OAuth signatures. I hope that after wrapping my mind | Wilmer van der Gaast | 2010-04-25 | -0/+106 |
around all of this the rest is going to be easier.. |