我試圖通過連接到twitter API來檢索Twitter數據,並在下面提出一些請求我的代碼,但我沒有收到任何回報......我只是要求不記名令牌併成功接收它。Twitter API 1.1的問題 - 使用PHP的應用程序唯一身份驗證響應
這是PHP代碼:
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json?
count=10&screen_name=twitterapi";
$headers = array(
"GET".$url." HTTP/1.1",
"Host: api.twitter.com",
"User-Agent: My Twitter App v1.0.23",
"Authorization: Bearer ".$bearer_token."",
"Content-Type: application/x-www-form-urlencoded;charset=UTF-8",
);
$ch = curl_init(); // setup a curl
curl_setopt($ch, CURLOPT_URL,$url); // set url to send to
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // set custom headers
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // return output
$retrievedhtml = curl_exec ($ch); // execute the curl
print_r($retrievedhtml);
使用的print_r沒事的時候
顯示在所有和使用的var_dump當我找到「布爾(假)」
什麼可能是任何想法這個錯誤?
問候,