Search code examples
asp.net-mvctwittertwitterizer

how to test a twitter api on your local machine


i am using twitterizer to have a web front end to twitter data. I'm trying to figure out how i can test on a localmachine when you have to put in a valid public callback url in your application registration. The twitter page doesn't let you have a callback url like this:

http://localhost:3444/Callback . .

any suggestions?


Solution

  • You can use http://127.0.0.1:port/...

    The Twitterizer example application is already setup to test locally.

    Ricky (The guy who made Twitterizer)