Django 1.7 google oauth2 token validation failure

后端 未结 2 2222
半阙折子戏
半阙折子戏 2021-02-15 19:13

I\'m trying to get through the process of authenticating a Google token for accessing a user\'s calendar within a Django application. Although I\'ve followed several indications

2条回答
  •  时光取名叫无心
    2021-02-15 20:05

    It could be a unicode issue with request.REQUEST['state']. Try putting str() around it, i.e. str(request.REQUEST['state']).

提交回复
热议问题