/{milestone-id}
Dies stellt einen Meilenstein auf einer Facebook-Seite dar.
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
}];
Um öffentlich geteilte Meilensteine einer beliebigen Seite anzusehen, brauchst du Folgendes:
Um Meilensteine einer von dir verwalteten Seite anzusehen, brauchst du Folgendes:
Name | Beschreibung | Typ |
---|---|---|
| Die ID eines Meilenstein-Events |
|
| Der Titel des Meilensteins |
|
| Die Seite, auf der der Meilenstein gepostet wurde | |
| Die Beschreibung des Meilensteins |
|
| Der Erstellzeitpunkt des Meilensteins |
|
| Der Aktualisierungszeitpunkt des Meilensteins |
|
| Der Startzeitpunkt des Meilensteins |
|
| Der Endzeitpunkt des Meilensteins Seiten-Meilensteine haben denselben Start- und Endzeitpunkt |
|
Diesen Vorgang kannst du nicht an diesem Endpunkt ausführen.
Mit dem /{page-id}/milestones
-Endpunkt kannst du neue Meilensteine für eine Seite erstellen.
Um Meilensteine einer von dir verwalteten Seite zu löschen, brauchst du Folgendes:
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
}];
Zum Löschen sind keine Felder erforderlich.
Bei Erfolg:
{ "success": true }
Ansonsten wird eine entsprechende Fehlermeldung ausgegeben.
Diesen Vorgang kannst du nicht an diesem Endpunkt ausführen.