Pages that are assigned to this business scoped user.
GET /v21.0/{user-id}/assigned_pages 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(
'/{user-id}/assigned_pages',
'{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(
"/{user-id}/assigned_pages",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{user-id}/assigned_pages",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{user-id}/assigned_pages"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
La lectura de este perímetro mostrará un resultado con formato JSON:
{ "
data
": [], "paging
": {}, "summary
": {} }
data
Los siguientes campos se agregarán a cada nodo devuelto:
Campo | Descripción |
---|---|
permitted_tasks list<string> | Tasks that are assignable on this object |
tasks list<string> | All unpacked roles/tasks of this particular user on this object |
paging
summary
Información total sobre el perímetro, por ejemplo, los recuentos. Especifica los campos que quieres recuperar en el parámetro "summary" (como en summary=total_count
).
Campo | Descripción |
---|---|
total_count int32 | Total number of objects on this edge |
Error | Descripción |
---|---|
100 | Invalid parameter |