Hi,
I am using Django 1.9.8 and implemented OAuth2, but when i upgrade django to 1.11 my to OAuth2 Token generation gets errors,
this is my code to generate token:
data = [
('grant_type', 'password'),
('username', userName),
('password', password),
]
accessTokenObj = requests.post(coreUrl, data=data, verify=False, auth=(DjangoApp_ClientId, DjangoApp_ClientSecret))
Any kind of hep will be appreciated in advance.
Regards,
Haroon Ahmed