Is anyone else having a difficult time getting Twitters oAuth's callback URL to hit their localhost development environment. Apparently it has been disabled recently. http://code.google.com/p/twitter-api/issues/detail?id=534#c1

Does anyone have a workaround. I don't really want to stop my development

link|improve this question
2  
FYI: dev.twipler.com resolves to 127.0.0.1 – Dead account Nov 25 '09 at 11:39
feedback

6 Answers

Here is the workaround: http://www.tonyamoyal.com/2009/08/17/how-to-quickly-set-up-a-test-for-twitter-oauth-authentication-from-your-local-machine/

To sum up the most important parts.

Alternative 1.

Set up your .hosts (Windows) or etc/hosts file to point a live domain to your localhost IP. such as:

127.0.0.1 xyz.com

where xyz.com is your real domain.

Alternative 2.

Also, the article gives the tip to alternatively use a URL shortener service. Shorten your local URL and provide the result as callback.

Alternative 3.

Furthermore, it seems that it works to provide for example http://127.0.0.1:8080 as callback to Twitter, instead of http://localhost:8080.

Best of luck!

link|improve this answer
5  
Direct links like this should include the relevant bits of the article in the answer. In case the article disappears. – jcollum Feb 17 at 19:24
1  
I edited the answer to sum up the important aspects of the article. – Jon Nylander May 5 at 8:53
Good point and thank you. – Tony May 21 at 6:31
feedback

I just had to do this last week. Apparently localhost doesn't work but 127.0.0.1 does...go figure. This of course assumes that you are registering two apps with Twitter, one for your live www.mysite.com and another for 127.0.0.1

link|improve this answer
really odd why this happens .. but does work for me ..thanks – Archan Mishra Apr 9 at 5:48
feedback

Yes, it was disabled because of the recent security issue that was found in OAuth. The only solution for now is to create two OAuth applications - one for production and one for development. In the development application you set your localhost callback URL instead of the live one.

link|improve this answer
I just tried doing that, but it doesn't accept localhost:3000 as a URL format... – David N. Welton Jun 9 '09 at 21:59
1  
Yes, they seem to filter such URLs. :( But the support for custom callback urls is back - maybe they're supported there. – arikfr Jul 7 '09 at 20:11
feedback

Use http://smackaho.st

What it does is a simple DNS association to 127.0.0.1 which allows you to bypass the filters on localhost or 127.0.0.1 :

smackaho.st. 28800 IN A 127.0.0.1

So if you click on the link, it will display you what you have on your local webserver (and if you don't have one, you'll get a 404). You can of course set it to any page/port you want :

http://smackaho.st:54878/twitter/callback

link|improve this answer
1  
this is a dead link now – Paul Dec 29 '11 at 4:06
1  
It's not dead. . . . – Mob Dec 29 '11 at 9:50
smackaho.st is no longer available tbaggery.com/2010/03/04/smack-a-ho-st.html. Use lvh.me instead. It goes directly to localhost. – Justin May 25 at 16:15
feedback

This is how i did it:

Registered Callback URL: http://127.0.0.1/Callback.aspx

   OAuthTokenResponse authorizationTokens = 
        OAuthUtility.GetRequestToken(ConfigSettings.getConsumerKey(), 
                                     ConfigSettings.getConsumerSecret(), 
                                     "http://127.0.0.1:1066/Twitter/Callback.aspx");

ConfigSettings:

public static class ConfigSettings
{
    public static String getConsumerKey()
    {
        return System.Configuration.ConfigurationManager.AppSettings["ConsumerKey"].ToString();
    }

    public static String getConsumerSecret()
    {
        return System.Configuration.ConfigurationManager.AppSettings["ConsumerSecret"].ToString();
    }

}

Web.config:

<appSettings>

    <add key="ConsumerKey" value="xxxxxxxxxxxxxxxxxxxx"/>
    <add key="ConsumerSecret" value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"/>

</appSettings>

Make sure you set the property 'use dynamic ports' of you project to 'false' and enter a static port number instead. (I used 1066).

I hope this helps!

link|improve this answer
feedback

Just put http://127.0.0.1:xxxx/ as the callback url, where xxxx is the port for your framework

link|improve this answer
feedback

Your Answer

 
or
required, but never shown