1

私はDjangoでdjango-social-authtweepyを使用して、そのapiを使用してTwitterにツイートを投稿しています。Twitterを使用したログインは正常に機能しますが、ツイートを投稿しているときに、views.pyからこのエラーが発生しますglobal name 'oauth_token' is not defined. 。よろしくお願いします。

from django.shortcuts import render
from django.contrib.auth import logout
from social_auth.models import UserSocialAuth
import tweepy
from twapp import settings


def index(request):
    if request.method == 'POST':

        instance = UserSocialAuth.objects.filter(user=request.user).get()
        oauth_access_token = (instance.tokens).get(oauth_token)

        oauth_access_secret = (instance.tokens).get(oauth_token_secret)
        print oauth_access_token
        auth = tweepy.OAuthHandler(settings.TWITTER_CONSUMER_KEY, settings.TWITTER_CONSUMER_SECRET)
        auth.set_access_token(oauth_access_token, 'oauth_access_secret')
        api = tweepy.API(auth)
        print api.me().name
        api.update_status('Updating using OAuth authentication via Tweepy!')
    return render(request, 'home.html')


def logout_view(request):
    logout(request)
    return render(request, 'home.html')
4

1 に答える 1

1

二重引用符を忘れた

oauth_access_token = (instance.tokens).get('oauth_token')
于 2013-03-21T16:44:40.007 に答える