我正在尝试实现一个C ++应用程序,该应用程序利用TwitCurl API从特定用户的时间轴中检索最新的tweet。
我尝试使用以下代码获取用户时间轴:
/* Get user timeline */
replyMsg = "";
printf("\nGetting user timeline\n");
if (twitterObj.timelineUserGet(true, false, 100, "target_id=4291685673"))
{
twitterObj.getLastWebResponse(replyMsg);
printf("\ntwitterClient:: twitCurl::timelineUserGet web response:\n%s\n", replyMsg.c_str());
}
else
{
twitterObj.getLastCurlError(replyMsg);
printf("\ntwitterClient:: twitCurl::timelineUserGet error:\n%s\n", replyMsg.c_str());
}
程序已运行,但触发了其他部分,并显示错误:“代码”:32,“消息”:无法对您进行身份验证。”用另一段代码发布新的状态消息似乎正常,并且我的OAuth令牌正常工作很好。关于如何在TwitCurl中使用API方法的文档不多。如果有人可以向我指出正确的方向,我将不胜感激。