We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
Many thanks for those nice examples!
When I received the code and call getAccessToken(), I got:
getAccessToken()
Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: https://api.instagram.com/oauth/access_token
Any ideas?
The text was updated successfully, but these errors were encountered:
I have an idea, please add the following code and tell me what outputs in the console:
accessTokenLoader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); private function errorHandler(event:flash.events.IOErrorEvent):void { trace(event.currentTarget.data); }
Sorry, something went wrong.
Hmm indeed, I got: {"error_type": "OAuthException", "code": 400, "error_message": "Redirect URI doesn't match original redirect URI"}
{"error_type": "OAuthException", "code": 400, "error_message": "Redirect URI doesn't match original redirect URI"}
The original REDIRECT_URI contains ?id=myId which is dynamic. So it can't exactly be the same with the dev portals. Instagram doesn't support it?
REDIRECT_URI
?id=myId
The REDIRECT_URI never change during the process.
No branches or pull requests
Hey,
Many thanks for those nice examples!
When I received the code and call
getAccessToken()
, I got:Any ideas?
The text was updated successfully, but these errors were encountered: