I'm writing simple twitter client by using Javascript with Titanium for Android phone. I'm using oauth.js and sha1.js from this link http://oauth.googlecode.com/svn/code/javascript/.

I managed to do authentication (request_token, authorize (pin) and access_token) and also, I'm able to get the home_timeline as well.

But I got the error as below when I post new status..

[DEBUG] [7,68818] [error]401 [text]{"error":"Could not authenticate with OAuth.","request":"/1/statuses/update.json"}

Here is the list of attempts that I made.

  1. I tried to verify_credentials (https://dev.twitter.com/docs/api/1/get/account/verify_credentials) to check my access_token is correct or not. It works so my access token is correct.
  2. I check the application tab in twitter site as well. I have already given "read, write and dm" access to my application.
  3. I tried changing my system time to UTC and test the update as well but not working.

Here is my code.

var UPDATE_URL = 'https://api.twitter.com/1/statuses/update.json';

var accessor = {
    consumerSecret: CONSUMER_SECRET,
    tokenSecret: ''
};



  this.tweet = function(text){

       accessor.tokenSecret = oauth_token_secret;


       var message = {
            action: UPDATE_URL
            ,
            method: 'POST'
            ,
            parameters: []
        };

    Ti.API.debug('oauth_token ' + oauth_token);
    Ti.API.debug('oauth_token_secret ' + oauth_token_secret);
    Ti.API.debug('accessor.consumerSecret ' + accessor.consumerSecret);

        message.parameters.push(['oauth_consumer_key', CONSUMER_KEY]);
    message.parameters.push(['oauth_token', oauth_token]);
        message.parameters.push(['oauth_signature_method', 'HMAC-SHA1']);

        message.parameters.push(['status', text]);

        OAuth.setTimestampAndNonce(message);
        OAuth.SignatureMethod.sign(message, accessor);

    var client = Ti.Network.createHTTPClient();
    client.open("POST", UPDATE_URL, true);
        client.setRequestHeader('Content-Type','application/x-www-form-urlencoded;');   
    client.setRequestHeader("Authorization", OAuth.getAuthorizationHeader("", message.parameters)); 

    client.onload  = function() {  
         Ti.API.debug('tweet - [onload]' + client.responseText);  
    }

    client.onerror = function(e) {  
        Ti.API.debug('[error]' + this.status + " [text]" + client.responseText);   
    };

        var parameterMap = OAuth.getParameterMap(message.parameters);

        //client.send(parameterMap);
    //client.send('status=Maybe%20he%27ll%20finally%20find%20his%20keys.%20%23peterfalk&trim_user=true&include_entities=true');
    client.send();

    Ti.API.debug('tweet-15');
  };

Edit

I published the source code as an open source in git. You can read the details in this post http://michaelsync.net/2011/11/04/open-source-simple-twitter-client-written-in-javascrip-titanium

link|improve this question

feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.