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
It could be a unicode issue with request.REQUEST['state']. Try putting str() around it, i.e. str(request.REQUEST['state']).
request.REQUEST['state']
str()
str(request.REQUEST['state'])