I am trying to authenticate user accounts in Windows Phone. I found this C # library for the job (tweetsharp).
Their example is pretty clear, but they use a PIN to authenticate the user.
using TweetSharp;
TwitterService service = new TwitterService("consumerKey", "consumerSecret");
OAuthRequestToken requestToken = service.GetRequestToken();
Uri uri = service.GetAuthorizationUri(requestToken);
Process.Start(uri.ToString());
string verifier = "123456";
OAuthAccessToken access = service.GetAccessToken(requestToken, verifier);
service.AuthenticateWith(access.Token, access.TokenSecret);
IEnumerable<TwitterStatus> mentions = service.ListTweetsMentioningMe();
I was wondering if it is possible to do this without pincode? I tried applications that do not request code. Does this mean that tweetsharp is out of date?
Any idea if I can still authenticate with tweetsharp without using the contact part? Or is there an alternative SDK for a Windows phone?
source
share