2016-08-25 23 views

回答

0

請使用下列代碼。 爲您的網站創建應用程序ID並調用共享頁面URL,它將返回份額計數。 您可以使用捲曲庫檢索數據表格Facebook

$ json_string = file_get_contents_curl(「https://graph.facebook.com/v2.7/?id=http://example.com/xyz/&access_token=123456789002599|abcdSXS_PJNQ5iEBH098_ABC」);

$ json = json_decode($ json_string,true);

回波$ JSON [ '份額'] [ 'SHARE_COUNT']

捲曲代碼private function file_get_contents_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); curl_setopt($ch, CURLOPT_FAILONERROR, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 300); $cont = curl_exec($ch); if (curl_error($ch)) { return false; } return $cont; }

相關問題