-1
我正在使用下面的代碼來檢索我的gmail收件箱與PHP,但代碼不起作用。我究竟做錯了什麼 ?文件獲取內容不能在php中工作
$urls = "https://[email protected]:[email protected]/mail/feed/atom/";
$fileContents = file_get_contents($urls);
print_R($fileContents);
我正在使用下面的代碼來檢索我的gmail收件箱與PHP,但代碼不起作用。我究竟做錯了什麼 ?文件獲取內容不能在php中工作
$urls = "https://[email protected]:[email protected]/mail/feed/atom/";
$fileContents = file_get_contents($urls);
print_R($fileContents);
根據您的PHP配置,這可能是一個容易的使用:
$urls="https://[email protected]:[email protected]/mail/feed/atom/";
$fileContents = file_get_contents($urls);
但是,如果allow_url_fopen選項您的系統上未啓用,你可以閱讀 通過捲曲數據如下:
<?php
$ch= curl_init();
curl_setopt($ch, CURLOPT_URL, $urls);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($curlSession);
echo $output;
?>
您測試了嗎? HTTP請求失敗! HTTP/1.0 401未授權? –
@Quynh阮:。我的代碼,它顯示以下錯誤 「404這是一個錯誤 所請求的網址/郵件/飼料/原子/在此服務器上找不到這就是我們所知道的SimpleXMLElement對象() 「 – user6649363
你可以通過curl_setopt($ ch,CURLOPT_SSL_VERIFYPEER,false);但不要嘗試使用捲曲請求或file_get_contents與谷歌... buble船是非常聰明的,如果你嘗試了很多,那麼你的IP將被阻止。 –