我有facebook商业帐户。我看到了以下错误。
(#10) Application does not have permission for this action
尝试使用以下代码将用户添加到广告帐户时。
$attachment = array('access_token' => $accessToken,
'uid' => $fb_user_id,
'role' => '1001');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/v2.8/act_'.$ad_account_id.'/users');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
我已经拥有广告管理基本访问权限,广告管理API标准权限和business_management访问权限级别。
我从最近几天开始对此做RND,但没有得到任何暗示可能是什么问题所以任何人都可以给我建议什么是确切的问题?