-1
我正在使用Facebook Graph API。我想獲得post_id
的照片網址,但它不會返回照片網址鏈接。其實我想用這個鏈接進行進一步的操作。請問有人能解決這個問題嗎?使用facebook圖形API不返回圖片url鏈接
我的代碼是:
$response1 = Facebook::post('/me/photos', $data);
$response = $response1->getGraphUser()->asArray();
$graphNode = $response1->getGraphNode();
$post_id = $graphNode['id'];
$getImageLink = Facebook::get('/' . $post_id);