จุดเชื่องโยงนี้ช่วยให้คุณสามารถเผยแพร่รูปภาพไปยังฟีดของกลุ่มได้
ระบบไม่รองรับการดำเนินการนี้
คุณสามารถเผยแพร่รูปภาพผ่านการอัพโหลดหรือ 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
ดังนี้:
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
}];
ประเภทข้อกำหนด | คำอธิบาย |
---|---|
แอพของคุณต้องได้รับการอนุมัติสำหรับสิทธิ์การอนุญาตในการเข้าสู่ระบบและฟีเจอร์ต่างๆ ต่อไปนี้ (คลิกเพื่อขยายเพิ่มเติม) | |
คุณจะต้องติดตั้งแอพในกลุ่ม | |
โทเค็นการเข้าถึงของผู้ใช้สำหรับผู้ใช้ที่เป็นสมาชิกของกลุ่มที่ติดตั้งแอพ | |
ผู้ใช้จะต้องมอบสิทธิ์การอนุญาตนี้ให้แก่แอพของคุณ
|
ชื่อ | คำอธิบาย | ประเภท |
---|---|---|
| คำอธิบายของรูปภาพ ใช้เป็นข้อความแสดงสถานะประกอบในเรื่องราวในฟีด |
|
| คำอธิบายรูปภาพ |
|
| ตั้งค่าเป็น |
|
| รูปภาพถูกเข้ารหัสเป็นข้อมูล โดยจำเป็นต้องระบุข้อมูลในช่องนี้หรือช่อง | |
| URL ของรูปภาพที่อัพโหลดไว้บนอินเทอร์เน็ตอยู่แล้ว โดยจำเป็นต้องระบุข้อมูลในช่องนี้หรือช่อง |
|
หากสำเร็จ คุณจะได้รับการตอบกลับพร้อมข้อมูลดังต่อไปนี้ นอกจากนี้ตำแหน่งข้อมูลนี้ยังรองรับการดำเนินการ "อ่านหลังจากเขียน" และสามารถอ่านโหนดที่แสดงโดย id
ในประเภทการส่งคืนได้ทันที
ชื่อ | คำอธิบาย | ประเภท |
---|---|---|
| ID รูปภาพ ที่สร้างขึ้นใหม่ |
|
ระบบไม่รองรับการดำเนินการนี้
ระบบไม่รองรับการดำเนินการนี้