Returns the Businesses and Agencies that have permissions on the Instagram Business Asset
business_management permission for the business that owns the Instagram Business AssetGET /v25.0/{instagram-business-asset-id}/agencies HTTP/1.1
Host: graph.facebook.com/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/{instagram-business-asset-id}/agencies',
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result *//* make the API call */
FB.api(
"/{instagram-business-asset-id}/agencies",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{instagram-business-asset-id}/agencies",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{instagram-business-asset-id}/agencies"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];이 에지로부터 읽는 경우 JSON 형식의 결과를 반환합니다:
{ "
data": [], "paging": {} }
datapagingGiving an agency access to an Instagram business asset lets them work on tasks you assign to them, including using APIs to manage tasks. The Instagram business asset will remain in your portfolio.
agencies 에지에 POST 요청을 만들 수 있습니다: | 매개변수 | 설명 |
|---|---|
businessnumeric string | The business ID of the agency that you want to assign to this Instagram Business Asset 필수 |
permitted_tasksarray<enum {CONTENT, MESSAGES, COMMUNITY_ACTIVITY, ADVERTISE, ANALYZE}> | Tasks that you want to assign to the agency 필수 |
success: bool, | 오류 | 설명 |
|---|---|
| 100 | Invalid parameter |
/{instagram_business_asset_id}/agencies에 DELETE 요청을 만들어 an InstagramBusinessAsset에서 a Business을(를) 분리할 수 있습니다.| 매개변수 | 설명 |
|---|---|
businessnumeric string | The business ID of the agency that you want to revoke access for the Instagram Business Asset 필수 |
success: bool,