I am trying to link my application with Users twitter accounts using the Twitterizer library within asp.net mvc3. I have specified my callback url within my twitter app settings on their developer page.
www.myapp.com/twitterconnect
Everything works fine when testing in my local environment(using localhost as the callback)
but when I deploy and try to connect using the real app, the twitter callback URL specifies port 14605, which is apparently being blocked by my host.
http://www.myapp.com:14605/twitterconnect
Any ideas on how to remedy this?
Twitter uses default callback url in case if you haven’t passed the one in current request.
So find a way for your twitter API library to specify the callback you need at the moment (or not to pass any callback url at all).