/{group-doc-id}
แสดงถึงเอกสารภายในกลุ่มบน Facebook โหนด /{group-doc-id}
ส่งคืนเอกสารรายการเดียว
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
)ชื่อคุณสมบัติ | คำอธิบาย | ประเภท |
---|---|---|
| ID เอกสารของกลุ่ม |
|
| โปรไฟล์ที่สร้างเอกสารนี้ | |
| ชื่อเอกสาร |
|
| เนื้อหาของเอกสาร สตริงนี้จะมี HTML สำหรับการจัดรูปแบบใดๆ ในเอกสาร และจะมีการเข้ารหัสแบบ HTML |
|
| URL สำหรับไอคอนของเอกสาร |
|
| เวลาที่สร้างเอกสารขึ้นมา |
|
| เวลาที่เปลี่ยนแปลงเอกสารครั้งล่าสุด |
|
| ID ที่แสดงถึงการปรับปรุงแก้ไขเอกสารในปัจจุบัน |
|
| ระบุว่าผู้ใช้เซสชั่นสามารถแก้ไขเอกสารนี้ได้หรือไม่ |
|
| ระบุว่าผู้ใช้เซสชั่นสามารถลบเอกสารนี้ (บน Facebook.com) ได้หรือไม่ |
|
| URL สำหรับการฝังเอกสาร |
|
คุณไม่สามารถสร้างเอกสารผ่าน API กราฟได้
คุณไม่สามารถลบเอกสารผ่าน API กราฟได้
คุณไม่สามารถอัพเดตเอกสารผ่าน API กราฟได้