For my mobile app, I have whitelisted callback URLs like this:
“myapp-scheme://”
And my app receives 403 (error 415) by specifing callback_url like this:
“myapp-scheme://request_authorization”
However, my app doesn’t receive 403 (error 415) by specifing callback_url like this:
“myapp-scheme://request-authorization”
OAuth seems to return 403 (error 415) for url including “_”.
Is it specification?
Thanks!