eWizardII
eWizardII

Reputation: 1936

Using Tweepy with Apigee

I am using Tweepy, but I am trying to use it with the api from apigee, but to do so would require me to change auth.py https://github.com/joshthecoder/tweepy/blob/master/tweepy/auth.py it looks like and remake the package some how. Is there anyways to use tweepy with another api? Or another way to set up Python to use OAuth but with an apigee api which is connected to Twitter.

Thanks,

Upvotes: 1

Views: 661

Answers (1)

Marsh Gardiner
Marsh Gardiner

Reputation: 126

Short version: need to sign requests as if they're going to Twitter but then to route them via Apigee (i.e. a proxy use-case).

Longer response with links here: http://support.apigee.com/apigee/topics/using_python_and_apigees_twitter_api_with_oauth

Upvotes: 2

Related Questions