Hello
How to use twitter api with "http basic auth"?
I think I should use the "consumer key"! because twitter gave you limit rate of requests per hour, how can they count my requests if I didn't use my consumer key?
|
1
|
Hello How to use twitter api with "http basic auth"? I think I should use the "consumer key"! because twitter gave you limit rate of requests per hour, how can they count my requests if I didn't use my consumer key?
|
||
|
|
|
|
Whenever you want to use HTTP basic auth with anything, if you want to ignore the actual implementation and HTTP headers, just use cURL. Here's a simple example in PHP, cURL is available in other languages too:
And then |
||
|
|
|
|
Authenticated API GET requests are counted against your user account's tally. Unauthenticated API GET requests (permitted by some methods) are counted against your IP address's tally. POST requests are not rate limited. |
||||
|
|
|
I would think that they count the requests from the same IP - but I haven't double checked. Even dynamic IP address will be static for a session and, in the absence of any other identifying information, the only thing that will distinguish you from other users. As other posters have said - there are better methods if you've got a key. |
||||||
|
|
|
I recently wrote some PHP to post to Twitter This is the working part of it:
You can see it in action here: http://twitter.com/fmsvn using a callback from our SVN server I am posting the SVN messages to the projects Twitter Feed. |
||
|
|
|
||
|
|