尝试使用Twitter API在我的网站上加载我的时间轴,但我收到错误(code:32, message:Could not authenticate you)
。
但我似乎无法在我的代码中看到错误,请帮助我的代码在下面,谢谢。
代码:
$tw_arr = ["user_id" => xxxxxxxxxxxxxxxxxxxxx,
"screen_name" => xxxxxxxxxxxxx,
'consumer_key' => xxxxxxxxxxxxxxxxxxxxxxxxxx,
'consumer_secret' => xxxxxxxxxxxxxxxxxxxxxxx,
'oauth_access_token' => xxxxxxxxxxxxxxxxxxx,
'oauth_access_token_secret' => xxxxxxxxxxxxxxxxxxx];
$tw_connection = new TwitterOAuth($tw_arr["consumer_key"],$tw_arr["consumer_secret"],$tw_arr["oauth_access_token"], $tw_arr["oauth_access_token_secret"]);
$tw_connection->host = 'https://api.twitter.com/1.1/';
$userTwTimeline = $tw_connection->get('statuses/user_timeline.json?user_id='.$tw_arr['user_id'].'&count=5&exclude_replies=true');
答案 0 :(得分:0)
您是否添加了SSL证书?
我认为这是问题