Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I am using hammock to authenticate with the twitter api. Getting the tokens works fine. Even posting a tweet / status works fine. I'm having trouble getting a get request to work however.

The call back page load looks like this

  if (Request.QueryString["oauth_verifier"] != null)
                {
                    _Data = TwitterApi.GetAuthorizationData(Page.Request);
                    if (_Data != null)//TwitterApi.CheckAuthorization(Page.Request))
                    {
                        Session["Data"] = _Data;
                        divStep1.Visible = false;
                        divStep2.Visible = true;
                    }
                }

the method to get tokens looks like this

    public static TwitterOAuthData GetAuthorizationData(HttpRequest request)
    {
        TwitterOAuth oauth = new TwitterOAuth(ConsumerKey, ConsumerSecret);

        var response = oauth.GetAccessResponse(request);

        if (response.StatusCode == System.Net.HttpStatusCode.OK)
        {
            System.Collections.Specialized.NameValueCollection responseCol = HttpUtility.ParseQueryString(response.Content);

            TwitterOAuthData data = new TwitterOAuthData();
            data.Token = responseCol["oauth_token"];
            data.Secret = responseCol["oauth_token_secret"];
            data.Handle = responseCol["screen_name"];

            return data;
        }
        else
        {
            return null;
        }
    }

    public RestResponse GetAccessResponse(HttpRequest request)
    {
        if (request == null)
            throw new ArgumentNullException("request", "The request stream cannot be null");

        string token = request["oauth_token"];
        string verifier = request["oauth_verifier"];

        if (String.IsNullOrEmpty(token))
            throw new NullReferenceException("The oauth_token returned from the request was null or empty");

        if (String.IsNullOrEmpty(verifier))
            throw new NullReferenceException("The oauth_verifier returned from the request was null or empty");

        return GetAccessResponse(token, verifier);
    }

    public RestResponse GetAccessResponse(string token, string verifier)
    {
        OAuthCredentials credentials = new OAuthCredentials()
        {
            Type = OAuthType.AccessToken,
            SignatureMethod = OAuthSignatureMethod.HmacSha1,
            ParameterHandling = OAuthParameterHandling.HttpAuthorizationHeader,
            ConsumerKey = this.ConsumerKey,
            ConsumerSecret = this.ConsumerSecret,
            Token = token,
            Verifier = verifier,
            Version = TwitterConstants.Version
        };

        var client = new RestClient
        {
            Authority = TwitterConstants.OAuthAuthority,
            Credentials = credentials
        };

        var request = new RestRequest
        {
            Path = "access_token"
        };

        return client.Request(request);
    }     

Now to post a tweet:

    public TwitterResponse UpdateStatus(string message)
    {
        RestClient client = new RestClient
        {
            Authority = "http://api.twitter.com/",
            VersionPath = "1"
        };

            message = HttpUtility.HtmlEncode(message);

        client.AddField("screen_name", message);

                    OAuthCredentials credentials = new OAuthCredentials()
        {
            Type = OAuthType.AccessToken,
            SignatureMethod = OAuthSignatureMethod.HmacSha1,
            ParameterHandling = OAuthParameterHandling.HttpAuthorizationHeader,
            ConsumerKey = ----ConsumerKey,
            ConsumerSecret = ----ConsumerSecret,
            Token = ----Token,
            TokenSecret = ----TokenSecret,
            Version = "1"
        };

        RestRequest request = new RestRequest
        {
            Credentials = Credentials,
            Path = "statuses/update.xml"
        };

        return new TwitterResponse(client.Request(request));
    }

Massive Credit goes out to diplo for the open source example code. If there is an easy solution to my current problem and I continue with hammock diplo will be seeing a donation from me.

http://www.diplo.co.uk/blog/2010/8/9/oauth-with-twitter.aspx

This all works like a charm. I have been pulling my hair out attempting to make a Get request using hammock. Here is what I have been trying to do.

OAuthCredentials credentials = new OAuthCredentials()
        {
            Type = OAuthType.AccessToken,
            SignatureMethod = OAuthSignatureMethod.HmacSha1,
            ParameterHandling = OAuthParameterHandling.HttpAuthorizationHeader,
            ConsumerKey = ConsumerKey,
            ConsumerSecret = ConsumerSecret,
            Token = data.Token,
            TokenSecret = data.Secret,
            Version = "1"
        };

        RestClient client = new RestClient
        {
            Authority = "http://api.twitter.com",
            VersionPath = "1"
        };

        string handle = HttpUtility.HtmlEncode(data.Handle);

        client.AddField("screen_name", handle);
        client.AddField("cursor", cursor.ToString());

        RestRequest request = new RestRequest
        {
            Credentials = credentials,
            Path = "statuses/followers.xml",
            Method = Hammock.Web.WebMethod.Get, //I thought that this for sure would be the solution 
            VersionPath = "1"
        };

        XmlDocument twitDoc = new XmlDocument();
        XDocument xDoc = XDocument.Parse(client.Request(request).Content);
        using (var xmlReader = xDoc.CreateReader())
        {
            twitDoc.Load(xmlReader);
        }

This returns into the xmldocument

<error>This method requires a GET.</error>
<request>/1/statuses/followers.xml</request>

Any help would be much appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.