Hi everyone!
I'm trying to solve a problem I have in my app.
After the Authorization window appear and after the user allows my
application to user their information, the redirection is made ok and the
oauth_token is passed, but I'm passing in the redirect_uri my url that
contains query parameters
It is something like this
http://myapplication/Callback/GetGlue?disposition=AddChannel
The API is calling Ok to /Callback/GetGlue with a token (like this
/Callback/GetGlue?oauth_token=5f8f010b621cce4446b8a82505acb461)
I need that parameter to be passed to my web server to take an action
correctly
Leandro