/{group-doc-id}
Stellt ein Dokument innerhalb einer Facebook-Gruppe dar. Der /{group-doc-id}
-Node gibt ein einzelnes Dokument zurück.
GET /v21.0/{group-doc-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(
'/{group-doc-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(
"/{group-doc-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{group-doc-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:@"/{group-doc-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
OPEN
)Eigenschaftsname | Beschreibung | Typ |
---|---|---|
| Die ID des Gruppendokuments. |
|
| Das Profil, das dieses Dokument erstellt hat. | |
| Der Titel des Dokuments. |
|
| Der Text des Dokuments. Dieser String enthält HTML für Formatierungen im Dokument und ist HTML-codiert. |
|
| Die URL für das Symbol des Dokuments. |
|
| Erstellungsdatum des Dokuments. |
|
| Zeitpunkt der letzten Änderung an des Dokuments. |
|
| Eine ID, die die aktuelle Revision des Dokuments angibt. |
|
| Gibt an, ob der*die Sitzungsnutzer*in dieses Dokument bearbeiten kann. |
|
| Gibt an, ob der*die Sitzungsnutzer*in das Dokument (auf Facebook.com) löschen kann. |
|
| URLs für das Einbetten von Dokumenten |
|
Du kannst keine Dokumente über die Graph API erstellen.
Du kannst keine Dokumente über die Graph API löschen.
Du kannst keine Dokumente über die Graph API aktualisieren.