- 31 Dec, 2009 3 commits
-
-
Joshua authored
This fixes issue #8 for the time being until Twitter resolves the issue on their end. See issue #1207 on the twitter API tracker. Note: API calls still use 'api.twitter.com', just the initial OAuth setup uses 'twitter.com'.
-
Joshua authored
-
Ferenc Szalai authored
When 'secure' is True, HTTPS will be used for OAuth requests being sent to Twitter. This only applies to the get token, authorize, and get access token requests. API requests will not use HTTPS unless the API object also has 'secure' set to True in its constructor. Example: auth = OAuthHandler(token,secret,secure=True) # use HTTPS for OAuth setup api = API(auth) # will NOT use HTTPS api_https = API(auth, secure=True) # will use HTTPS for API requests. Signed-off-by:
Joshua <jroesslein@gmail.com>
-
- 30 Dec, 2009 1 commit
-
-
joshthecoder authored
-
- 17 Dec, 2009 6 commits
-
-
Joshua authored
-
Bas Westerbaan authored
Merged from bwesterb/tweepy @5c7a7480de1ee99fae8c4a1eef65c127cb83e619 Signed-off-by:
Joshua <jroesslein@gmail.com>
-
Bas Westerbaan authored
Merged from bwesterb/tweepy @ 4404b178839bcfccbd46cdff4753a9274ae6acd6 Signed-off-by:
Joshua <jroesslein@gmail.com>
-
Joshua authored
-
Bas Westerbaan authored
Added helpers to User model for lists. Merged from bwesterb/tweepy @ f26e000ba04b57761578831792d7a7a1adfc8e41 Signed-off-by:
Joshua <jroesslein@gmail.com>
-
Bas Westerbaan authored
Signed-off-by:
Bas Westerbaan <bas@fsfe.org>
-
- 12 Dec, 2009 3 commits
-
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
- 10 Dec, 2009 8 commits
-
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Kumar Appaiah authored
Note: source parameter only works with identi.ca API. Twitter ignores this parameter. Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
- 09 Dec, 2009 1 commit
-
-
Joshua Roesslein authored
This method now properly returns the user timeline specifed by User.id
-
- 08 Dec, 2009 18 commits
-
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Joshua Roesslein authored
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Kumar Appaiah authored
Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
Currently this just sets httplib.HTTPConnection.debuglevel=1.
-
Joshua Roesslein authored
Example: m = bind_api(path='/test/{id}', allowed_param=['id']) m(id=123)
-