I download tweetsharp and twitterizer and I can not make it work. I try tweetsharp with the basic following sample
TwitterService Service = new TwitterService(consumerKeyTw, consumerSecretTW);
OAuthRequestToken requestToken = Service.GetRequestToken("http://localhost:1470/Twitterr/OAuth"); // <-- callback URL
I always get a false Token. I also try twitterizer, which came with a simple example. I copy and paste the keys. But I also never get back the token.
I try with tweetsharp deleting the url callback and it worked! But off course twitter didn't go to my callback url. On dev.twitter I setup for Registered Callback URL the above url. But I still don't get the token.
Any Idea? What I'am missing? Do you know any way to debug and test my code with a localhost? Thanks!