Versione API Graph

/{milestone-id} obiettivo

Rappresenta un obiettivo su una Pagina Facebook.

Guide correlate

Lettura

Tool di esplorazione per la API Graph
GET /v21.0/{milestone-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(
    '/{milestone-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(
    "/{milestone-id}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{milestone-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:@"/{milestone-id}"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

Autorizzazioni

Per visualizzare gli obiettivi condivisi pubblicamente di qualsiasi Pagina, hai bisogno di:

Per visualizzare gli obiettivi condivisi delle Pagine che gestisci, hai bisogno di:

Campi

Nome Descrizione Tipo

id

L'ID dell'evento relativo a un obiettivo

string

title

Il titolo dell'obiettivo

string

from

La Pagina che ha pubblicato l'obiettivo

Page

description

La descrizione dell'obiettivo

string

created_time

L'ora di creazione dell'obiettivo

datetime

updated_time

L'ora di aggiornamento dell'obiettivo

datetime

start_time

L'ora di inizio dell'obiettivo

datetime

end_time

L'ora di fine dell'obiettivo. Gli obiettivi di una Pagina hanno la stessa ora di inizio e di fine

datetime

Creazione

Non puoi eseguire questa operazione su questo endpoint.

Usa l'endpoint /{page-id}/milestones per creare nuovi obiettivi per una Pagina.

Eliminazione

Autorizzazioni

Per eliminare un obiettivo delle Pagine che gestisci, hai bisogno di:

DELETE /v21.0/{milestone-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->delete(
    '/{milestone-id}',
    array (),
    '{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(
    "/{milestone-id}",
    "DELETE",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{milestone-id}",
    null,
    HttpMethod.DELETE,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{milestone-id}"
                                      parameters:params
                                      HTTPMethod:@"DELETE"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

Campi

Non è necessario eliminare alcun campo.

Risposta

Se l'operazione va a buon fine:

{
  "success": true
}

In caso contrario, viene restituito un messaggio di errore pertinente.

Aggiornamento

Autorizzazioni

Non puoi eseguire questa operazione su questo endpoint.

Segmenti

Nome Descrizione

/likes

Una lista dei mi piace.

/comments

Una lista dei commenti.