I have been using the Bitly api through OAuth for a while. Today I needed to update a server name for an account and after making the change the
https://bitly.com/a/oauth_apps page forces me to add a Redirect URI (previously this was blank).
The problem is now that I can not use arbitrary parameters in the URL query string, since the oauth/authorize endpoint returns: {"status_code": 500, "data": null, "status_txt": "REDIRECT_URI_DOES_NOT_MATCH_APPLICATION"}
Is there any way I can pass an arbitrary URL parameter through the callback? Previously I could do this:
The number on the end of the URL encoded redirect could be changed to allow a special app specific identification code.
Am I now limited to adding this stuff to the session? Other apps I have where I have not yet been forced to apply a URI callback are still working, which is a good fallback, but annoying moving forward.
Any chance that there is a special escape character I could use to match old query string on my callback?
Thanks,
Phil