我正在尝试使用我的 oauth_token 和 oauth_token_secret 搜索用户,如 dev.twitter.com 上的应用程序页面上所示,但我得到了
“无法验证您的身份。”
我用正确的值点击的网址:
https://api.twitter.com/1/users/search.json?q=foo&oauth_token=123&oauth_token_secret=abc
我正在尝试使用我的 oauth_token 和 oauth_token_secret 搜索用户,如 dev.twitter.com 上的应用程序页面上所示,但我得到了
“无法验证您的身份。”
我用正确的值点击的网址:
https://api.twitter.com/1/users/search.json?q=foo&oauth_token=123&oauth_token_secret=abc
在这里,您正在执行一个经过身份验证的请求,这是验证它的错误方法。
做你想做的事,你可以做这样的事情(这里计算有多少人在搜索中使用你的应用程序):
unsigned int nbTweets = 0;
Timeline tl = twitter.search("foo"); // http://search.twitter.com/search.json?q=foo
foreach (Tweet t in tl) {
// Retrieving the application used to write the tweet in the "source" field of the tweet
String tweetHTMLSource = t.source; // tweetHTMLSource == '<a href="clientName.callbackURL" rel="nofollow">clientName</a>'
String clientName = tweetHTMLSource.plainText; // clientName == "clientName"
if (clientName == "MYAPPLICATION_NAME") {
nbTweets++;
}
}