开发者

Can't twitter status using oAuth and .net Hammock library on Windows Phone 7

I've been able setup the oAuth calls to get the users access Token following a couple blog posts:

http://sudheerkovalam.wordpress.com/2010/08/28/a-windows-phone-7-twitter-application-part-1/ and :/byatool.com/c/connect-your-web-app-to-twitter-using-hammock-csharp/comment-page-1/#comment-9955

But I'm having problems sending a status update. I can't find any examples so I may not be setting the proper values. Here's the code which keeps returning: "Could not authenticate with OAuth."

private void Tweet()
{
    var credentials = new OAuthCredentials
                            {
                                Type = OAuthType.ProtectedResource,
                                SignatureMethod = OAuthSignatureMethod.HmacSha1,
                                ParameterHandling = OAuthParameterHandling.HttpAuthorizationHeader,
                                ConsumerKey = TwitterSettings.ConsumerKey,
                                ConsumerSecret = TwitterSettings.ConsumerKeySecret,
                                Token = _settings.AccessToken,
                                TokenSecret = _settings.AccessTokenSecret,
                                Version = TwitterSettings.OAuthVersion,
                            };

    var client = new RestClient
    {
        Authority = "http://twitter.com/oauth",
        Credentials = c开发者_C百科redentials,
        HasElevatedPermissions = true
    };

    var request = new RestRequest
    {
        Path = "/statuses/update.json",
        Method = WebMethod.Post
    };

    request.AddParameter("status", TwitterTextBox.Text);

    client.BeginRequest(request, new RestCallback(TwitterPostCompleted));
}

private void TwitterPostCompleted(RestRequest request, RestResponse response, object userstate)
{
    Dispatcher.BeginInvoke(() => MessageBox.Show(response.Content));
}

thanks for any help, Sam


Ah figured it out finally I was using the wrong URL need to use:

Authority = "http://api.twitter.com" and not: "http://twitter.com/oauth"


Just in case other people find this I've written a blog post on using OAth with Hammock for Twitter. Might be of use to some people!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜