/{milestone-id}
obiettivoRappresenta un obiettivo su una Pagina Facebook.
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
}];
Per visualizzare gli obiettivi condivisi pubblicamente di qualsiasi Pagina, hai bisogno di:
Per visualizzare gli obiettivi condivisi delle Pagine che gestisci, hai bisogno di:
Nome | Descrizione | Tipo |
---|---|---|
| L'ID dell'evento relativo a un obiettivo |
|
| Il titolo dell'obiettivo |
|
| La Pagina che ha pubblicato l'obiettivo | |
| La descrizione dell'obiettivo |
|
| L'ora di creazione dell'obiettivo |
|
| L'ora di aggiornamento dell'obiettivo |
|
| L'ora di inizio dell'obiettivo |
|
| L'ora di fine dell'obiettivo. Gli obiettivi di una Pagina hanno la stessa ora di inizio e di fine |
|
Non puoi eseguire questa operazione su questo endpoint.
Usa l'endpoint /{page-id}/milestones
per creare nuovi obiettivi per una Pagina.
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
}];
Non è necessario eliminare alcun campo.
Se l'operazione va a buon fine:
{ "success": true }
In caso contrario, viene restituito un messaggio di errore pertinente.
Non puoi eseguire questa operazione su questo endpoint.