เวอร์ชันของ API กราฟ

รูปภาพในกลุ่ม

จุดเชื่องโยงนี้ช่วยให้คุณสามารถเผยแพร่รูปภาพไปยังฟีดของกลุ่มได้

การอ่าน

ระบบไม่รองรับการดำเนินการนี้

การสร้าง

คุณสามารถเผยแพร่รูปภาพผ่านการอัพโหลดหรือ URL ได้

ผ่านการอัพโหลด

การถ่ายรูปผ่านการอัพโหลดไฟล์เป็น multipart/form-data จากนั้นใช้พารามิเตอร์ source ดังนี้:

POST /v21.0/{group-id}/photos HTTP/1.1
Host: graph.facebook.com

source=%7Bimage-data%7D
/* PHP SDK v5.0.0 */
/* make the API call */
try {
  // Returns a `Facebook\FacebookResponse` object
  $response = $fb->post(
    '/{group-id}/photos',
    array (
      'source' => '{image-data}',
    ),
    '{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-id}/photos",
    "POST",
    {
        "source": "{image-data}"
    },
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
Bundle params = new Bundle();
params.putString("source", "{image-data}");
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{group-id}/photos",
    params,
    HttpMethod.POST,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
NSDictionary *params = @{
  @"source": @"{image-data}",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{group-id}/photos"
                                      parameters:params
                                      HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

ผ่านทาง URL

เผยแพร่รูปภาพจากอินเทอร์เน็ต โดยใช้ URL และพารามิเตอร์ url ดังนี้:

POST /v21.0/{group-id}/photos HTTP/1.1
Host: graph.facebook.com

url=%7Bimage-url%7D
/* PHP SDK v5.0.0 */
/* make the API call */
try {
  // Returns a `Facebook\FacebookResponse` object
  $response = $fb->post(
    '/{group-id}/photos',
    array (
      'url' => '{image-url}',
    ),
    '{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-id}/photos",
    "POST",
    {
        "url": "{image-url}"
    },
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
Bundle params = new Bundle();
params.putString("url", "{image-url}");
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{group-id}/photos",
    params,
    HttpMethod.POST,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
NSDictionary *params = @{
  @"url": @"{image-url}",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{group-id}/photos"
                                      parameters:params
                                      HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

ข้อกำหนด

ประเภทข้อกำหนดคำอธิบาย

การตรวจสอบแอพ

แอพของคุณต้องได้รับการอนุมัติสำหรับสิทธิ์การอนุญาตในการเข้าสู่ระบบและฟีเจอร์ต่างๆ ต่อไปนี้ (คลิกเพื่อขยายเพิ่มเติม)

สิทธิ์การอนุญาตในการเข้าสู่ระบบ

publish_to_groups

ฟีเจอร์

API กลุ่ม

การติดตั้งแอพ

คุณจะต้องติดตั้งแอพในกลุ่ม

โทเค็น

โทเค็นการเข้าถึงของผู้ใช้สำหรับผู้ใช้ที่เป็นสมาชิกของกลุ่มที่ติดตั้งแอพ

สิทธิ์การอนุญาต

ผู้ใช้จะต้องมอบสิทธิ์การอนุญาตนี้ให้แก่แอพของคุณ

publish_to_groups

ช่อง

ชื่อ คำอธิบาย ประเภท

caption

คำอธิบายของรูปภาพ ใช้เป็นข้อความแสดงสถานะประกอบในเรื่องราวในฟีด

string

message

คำอธิบายรูปภาพ

string

published

ตั้งค่าเป็น false หากคุณไม่ต้องการเผยแพร่รูปภาพในทันที ค่าเริ่มต้น: true

string

source

รูปภาพถูกเข้ารหัสเป็นข้อมูล โดยจำเป็นต้องระบุข้อมูลในช่องนี้หรือช่อง url อย่างใดอย่างหนึ่ง แต่จะไม่ระบุทั้งสองช่องพร้อมกัน

multipart/form-data

url

URL ของรูปภาพที่อัพโหลดไว้บนอินเทอร์เน็ตอยู่แล้ว โดยจำเป็นต้องระบุข้อมูลในช่องนี้หรือช่อง source อย่างใดอย่างหนึ่ง แต่จะไม่ระบุทั้งสองช่องพร้อมกัน

string

การตอบกลับ

หากสำเร็จ คุณจะได้รับการตอบกลับพร้อมข้อมูลดังต่อไปนี้ นอกจากนี้ตำแหน่งข้อมูลนี้ยังรองรับการดำเนินการ "อ่านหลังจากเขียน" และสามารถอ่านโหนดที่แสดงโดย id ในประเภทการส่งคืนได้ทันที

ชื่อ คำอธิบาย ประเภท

id

ID รูปภาพ ที่สร้างขึ้นใหม่

string

การอัพเดต

ระบบไม่รองรับการดำเนินการนี้

การลบ

ระบบไม่รองรับการดำเนินการนี้