python - Instagram Client Side Authentication Issue -


i'm have issue getting access token. keep getting oauth exception.

if type url in chrome/safari browser on mac:

i redirected url.

with error:

{"code": 400, "error_type": "oauthexception", "error_message": "you must include valid client_id, response_type, , redirect_uri parameters"}

the auth flow working before in app. stopped dev on while , came project give update. changes i've made redirect_uri , client_id.

so need percent encode redirect_uri: it'll this:

http%3a%2f%2fwww.johnymoswag.com

with %2f being "/" , %3a ":"

everything between ".com" , "/oath" invalid. maybe instagram changed url @ point authorization. should work though.

https://instagram.com/oauth/authorize/?client_id=clientid&redirect_uri=http%3a%2f%2fwww.johnymoswag.com&response_type=token

just change clientid client id want have access to.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -