我真的很难让这个 twitter 库(https://github.com/mynetx/codebird-js)返回搜索结果而不是用户时间线。
我找不到将搜索参数传递给它的位置。
这是我目前的代码:
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
}
但它一直抛出一个错误,有谁知道我该怎么做?