Django 1.7 google oauth2 token validation failure

后端 未结 2 1176
失恋的感觉
失恋的感觉 2021-02-15 19:40

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 19:54

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

提交回复
热议问题