我真的堅持試圖讓這個推特圖書館(https://github.com/mynetx/codebird-js)返回搜索結果,而不是用戶時間表。如何使用codebird.js搜索匹配用戶的twitter API?
我找不到將搜索參數傳遞給它的位置。
這是我的時刻代碼:
var cb = new Codebird();
cb.setConsumerKey("<fill in>","<fill in>");
cb.setToken('<fill in>','<fill in>');
cb.__call('users/search', {
'user' : '<fill in>', // ??
}
);
function tweets_callback (result)
{
// do something with the result
}
但它不斷拋出一個錯誤,沒有人知道我該怎麼辦呢?
的URL格式看起來可疑我;如果它不是「users_search」? – 2013-08-27 06:40:20
請注意,自從發佈此答案後,Codebird中的__call()方法的語法已更改。請參閱[Codebird文檔](https://github.com/mynetx/codebird-js#2-usage-examples)。 – MForMarlon 2013-09-05 00:30:39