I am attempting to use Django oauth with Amazon.
I have setup an application with amazon and placed my key/secret in settings.py
SOCIAL_AUTH_AMAZON_OAUTH2_KEY = ''blahkey'
SOCIAL_AUTH_AMAZON_OAUTH2_SECRET = 'blahblahblabhsecret'
The request (which returns an Error from Amazon) is made to amazon with url like so:
https://www.amazon.com/ap/oa?ie=UTF8&response_type=code&scope=profile&redirect_uri=http%3A%2F%2Flocalhost%3A8000%2Fcomplete%2Famazon%2F&state=oRNdyN6ewMMA6zqkkPc2k8ntR20JNtp2&client_id=None
Notice the client_id=None in the url. Could this be an issue?
I am attempting to use Django oauth with Amazon.
I have setup an application with amazon and placed my key/secret in settings.py
The request (which returns an Error from Amazon) is made to amazon with url like so:
Notice the client_id=None in the url. Could this be an issue?