2017-08-28 25 views
0

私はdjangoを使用してアクセストークンを取得するのに苦労しています。 oAuthを使用してユーザーからアクセストークンを取得したい。Google OAUTH djangoを使用してアクセストークンを取得

これまでの設定はこれです。 urls.py下

class GoogleExhangeViewSet(viewsets.ViewSet): 
    queryset = User.objects.all() 


    @list_route(
     methods=["GET"]) 

    def auth(self,request,pk=None): 
     client_id = '' 
     client_secret = '' 
     flow = OAuth2WebServerFlow(client_id=client_id, 
            client_secret=client_secret, 
            scope='https://www.googleapis.com/auth/calendar', 
            redirect_uri='http://localhost:8001/api/googleAuth/complete') 
     auth_uri = flow.step1_get_authorize_url() 
     return HttpResponseRedirect(auth_uri) 

    def complete(self, request, pk=None): 
     client_id = '' 
     client_secret = '' 
     host = Site.objects.get_current().name 
     flow = OAuth2WebServerFlow(client_id=client_id, 
            client_secret=client_secret, 
            scope='https://www.googleapis.com/auth/calendar', 
            redirect_uri='http://localhost') 
     credentials = flow.step2_exchange(request.GET.get('code')) 
     return Response(status=200,data=credentials.access_token) 

私はこれは私があなたのエラーで見られるように、次のコード enter image description here

答えて

0

で取得エラーです

api_router.register(r'api/googleAuth', GoogleExhangeViewSet) 

を持っているあなたがいる場合、あなたはredirect_uri_mismatchBad Requestが発生しています間違ったリダイレクトURIを使用しています。このlinkから、redirect_uri_mismatchがauth要求とtoken要求の間で一致しなかった場合にスローされます。

その他の参照:

Djangoの認証システムに対してユーザーを認証するためにAccess Tokenを使用したい場合はここでtutorialです。

アクセストークンを解放できる完全機能のOAuth2プロバイダが必要です。part 1 of the tutorialの手順に従ってください。 OAuth2トークン認証を有効にするには、リクエスト内のトークンをチェックするミドルウェアと、トークン検証を処理するカスタム認証バックエンドが必要です。

関連する問題