List all businesses that have access to your business's assets.
GET /v21.0/{business-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(
'/{business-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(
"/{business-id}/agencies",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{business-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:@"/{business-id}/agencies"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
La lectura de este perímetro mostrará un resultado formateado con JSON:
{ "
data
": [], "paging
": {}, "summary
": {} }
data
Los siguientes campos se añadirán a cada nodo devuelto:
Campo | Descripción |
---|---|
adaccount_permissions list<AdAccountPermission> | Adaccount_permissions |
application_permissions list<AppPermission> | Application_permissions |
page_permissions list<PagePermission> | Page_permissions |
productcatalog_permissions list<ProductCatalogPermission> | Productcatalog_permissions |
shared_ca_count int32 | Shared_ca_count |
paging
summary
Información global sobre el perímetro, como los recuentos. Especifica los campos sobre los que quieres recuperar información en el parámetro "summary siguiendo este modelo: summary=total_count
.
Campo | Descripción |
---|---|
total_count unsigned int32 | Total number of businesses. |
Error | Descripción |
---|---|
190 | Invalid OAuth 2.0 Access Token |
/{business_id}/agencies
.Parámetro | Descripción |
---|---|
business numeric string or integer | The agency's business. Obligatorio |
success
: bool, Error | Descripción |
---|---|
100 | Invalid parameter |