Version API du graphe

Place Topic

Lecture

The category of a place Page

Nouvelle version des Pages

This endpoint is supported for Nouvelle version des Pages.

Feature Permissions

NomDescription
Accès au contenu public de la PageThis feature permission may be required.

Exemple

Graph API Explorer
GET /v19.0/{place-topic-id} 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(
    '/{place-topic-id}',
    '{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(
    "/{place-topic-id}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{place-topic-id}",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{place-topic-id}"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];
Pour apprendre à utiliser l’API Graph, consultez notre guide Utiliser l’API Graph.

Paramètres

ParamètreDescription
icon_size
enum{24, 36, 48, 72}

The size of the icon to get, one of 36, 48, or 72

Champs

ChampDescription
id
numeric string

The topic ID

count
unsigned int32

How many Pages have this category

has_children
bool

Whether there are subcategories of this category

icon_url
string

The URL for the icon representing this category

name
string

Localized name of the category

parent_ids
list<id>

IDs of any parent categories that this is a subcategory of

plural_name
string

Localized plural name of the category

top_subtopic_names
list<string>

Names of the subtopics associated with the most pages

Error Codes

ErreurDescription
100Invalid parameter
190Invalid OAuth 2.0 Access Token

Création

Vous ne pouvez pas effectuer cette opération sur ce point de terminaison.

Mise à jour

Vous ne pouvez pas effectuer cette opération sur ce point de terminaison.

Suppression

Vous ne pouvez pas effectuer cette opération sur ce point de terminaison.