/{object-id}/sharedposts
Tài liệu này mô tả cạnh /sharedposts
được dùng phổ biến cho nhiều nút API Đồ thị. Cấu trúc và hoạt động của từng nút đều như nhau. Các đối tượng sau có cạnh sharedposts
:
user_posts
, dành cho người có thể xem bài viết sau khi cài đặt quyền riêng tư được xem xét. Một bài viết sẽ được trả về nếu (a) ứng dụng tạo bài viết hoặc (b) người tạo bài viết đã cấp quyền user_posts
cho ứng dụng.Tên | Mô tả |
---|---|
Quyền truy cập nội dung công khai trên Trang | Đây là quyền truy cập tính năng bắt buộc. |
/{album-id}/sharedposts
không có sẵn.GET /{photo-id}/sharedposts
đã ngừng hoạt động trên phiên bản 8.0 trở lên.GET /v21.0/{object-id}/sharedposts 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(
'/{object-id}/sharedposts',
'{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(
"/{object-id}/sharedposts",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{object-id}/sharedposts",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{object-id}/sharedposts"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Một danh sách các đối tượng Bài viết biểu thị từng lượt chia sẻ.
Bạn không thể đăng lượt chia sẻ của một đối tượng thông qua API Đồ thị.
Bạn không thể xóa lượt chia sẻ của một đối tượng thông qua API Đồ thị.