/{group-doc-id}
Mewakili dokumen dalam grup Facebook. Node /{group-doc-id}
menampilkan satu dokumen.
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
)Nama Properti | Deskripsi | Jenis |
---|---|---|
| ID dokumen grup. |
|
| Profil yang membuat dokumen ini. | |
| Judul dokumen. |
|
| Body dokumen. String ini akan berisi HTML untuk format apa pun dalam dokumen, dan akan berenkode HTML. |
|
| URL untuk ikon dokumen |
|
| Kapan dokumen dibuat. |
|
| Terakhir kali dokumen diubah. |
|
| ID yang mewakili revisi dokumen saat ini. |
|
| Apakah pengguna sesi dapat mengedit dokumen ini. |
|
| Apakah pengguna sesi dapat menghapus dokumen ini (di Facebook.com). |
|
| URL untuk sematan dokumen |
|
Anda tidak bisa membuat dokumen melalui Graph API.
Anda tidak bisa menghapus dokumen melalui Graph API.
Anda tidak bisa memperbarui dokumen melalui Graph API.