Change the oauth callback method like this. I am having the rails example here.
oauth_callback = request.protocol + request.host_with_port + “/oauth_callback?message=#{message}”
?message=#{message} is the additional param which I deal with my oauth implementation.
The same param you can receive it at the oauth_callback method like this , params[:message]
