As I am trying out oauth implementation, i looks like after some time twitter caches the oauth_callback. Since my implementation isnt fullyworking, I have sent several calls to authorize url with oauth_callback=<someUrl>, and again some other times, with oauth_callback=oob (since redirecting to some Url isn't working). But, the problem is even when I send oauth_callback=oob or no oauth_callback paramater, it still redirects to my old page.
1. Send the below request several times(say about 10 times) http://twitter.com/oauth/authorize?oauth_token=<token>&oauth_callback=<some url> 2. now, send the following, http://twitter.com/oauth/authorize?oauth_token=<token>&oauth_callback=<oob> 3. or this(without oauth_callback), http://twitter.com/oauth/authorize?oauth_token=<token> For both Step2 and 3, twitter continues to redirect. Is this a bug
