我正在尝试使用以下方法获取 FBpage 的封面网址:
$fql_query_url = "https://graph.facebook.com"
."/$fb_id[id]?fields=cover"
."";
try {
$fql_query_result = @file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);
} catch(Exception $o){ }
$cover = $fql_query_obj[cover][source];
我得到一个 http://... url 而不是 https://... url
有小费吗?