我正在尝试在linux中使用twitcurl库。我使用this作为安装库的指南。但是当我尝试运行给出的twitterclient.cpp示例应用程序时,在询问我是否安装了代理服务器之后,我收到以下错误:
twitterClient:: twitCurl::accountVerifyCredGet web response:
{"errors":[{"code":32,"message":"Could not authenticate you."}]}
twitterClient:: twitCurl::followersIdsGet for user [nextbigwhat] web response:
{"errors":[{"code":32,"message":"Could not authenticate you."}]}
NEXT CURSOR: "code":32,"message":"Could not authenticate you."}]}
twitterClient:: twitCurl::followersIdsGet for user [nextbigwhat] web response:
terminate called after throwing an instance of 'std::out_of_range'
what(): basic_string::substr
Aborted (core dumped)
任何人都可以通过指出我做错了什么来帮助我吗?
编辑:我将列出用于安装库的确切步骤。
libwitcurl
目录中运行make命令。这生成了twitcurl共享库libtwitcurl.so.1.0
。libtwitcurl.so.1.0
复制到/usr/lib/
目录为libtwitcurl.so
。g++ twitterClient.cpp -ltwitcurl
构建示例应用程序并运行应用程序。