This is a library to call twitter api from titanium mobile project.
Ti.include("lib/twitter_api.js");
//initialization
var twitterApi = new TwitterApi({
consumerKey:'YOUR CONSUMER KEY of twitter API',
consumerSecret:'YOUR SECRET of twitter API'
});
twitterApi.init();
When you call twitterApi.init, the library open a web browser UI to request the oauth authorization process if needs.
//status update
twitterApi.statuses_update({
onSuccess: function(responce){
alert('tweet success');
Ti.API.info(responce);
},
onError: function(error){
Ti.API.error(error);
},
parameters:{status: 'yah! this is my first tweet from twitter_api.js! '}
});
//get tweets
twitterApi.statuses_home_timeline({
onSuccess: function(tweets){
for(var i=0;i<tweets.length;i++){
var tweet = tweets[i];
// now you can use tweet.user.name, tweet.text, etc..
}
},
onError: function(error){
Ti.API.error(error);
}
});
Some API has optional parameters.
twitterApi.users_show({
user_id:'5574572', //parameters.
onSuccess: function(ret){
Ti.API.debug(ret);
}
});
This library is forked from 'Twitter oAuth Implementation for Titanium Mobile' by David Riccitelli.
if you like the OAuth Adapter, consider donating to David.
See also ['Re: Twitter oAuth Implementation for Titanium Mobile'][blog_link1] about oauth-adapter story. [blog_link1]: http://mogya.blog.com/2011/01/18/re-twitter-oauth-implementation-for-titanium-mobile/
Also using [oauth.js][oauth_js] and [sha1.js][sha1_js] as original OAuth Adapter. [oauth_js]: http://oauth.googlecode.com/svn/code/javascript/oauth.js [sha1_js]: http://oauth.googlecode.com/svn/code/javascript/sha1.js
To update twitter status, you need "Read and Write" permission on twitter API application setting.
英語は疲れますね:-)
Titanium mobile から twitter APIを呼び出すためのラッパークラスです。 同様の機能を持つものとして、David Riccitelli の'Twitter oAuth Implementation for Titanium Mobile'が有名なのですが、 このライブラリ、GETができなかったり、APIの呼び出しが終わるたびに毎回ポップアップを出さないといけないとか、いろいろ問題があったので titanium-hatena-oauth-sampleを参考に書き換えました。
ついでに、twitterAPIを簡単に呼び出せるようにしたtwitter_api.jsというラッパークラスを作りました。 APIドキュメントに書いてある名前と引数でAPIを呼び出すことができて、onSuccessとか、onErrorといった普通のコールバック関数で処理を行うことができます。 詳しくは上記(英語の部分の)サンプルコードをご覧ください。