Facebook 图形 API:上传页面图像

发布于 2024-12-11 17:33:03 字数 85 浏览 0 评论 0原文

是否可以通过graph api将图像作为页面图片(不是相册图片)上传到facebook页面?那么当用户在此页面撰写帖子时是否还可以定义偏移量来创建微型图片?

Is it possible to upload an image to a facebook page as the page picture (not a photo album picture) through the graph api? And then is it possible to also define the offsets to create the miniature picture when a user writes posts as this page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南街女流氓 2024-12-18 17:33:03

是的,下面在很多地方对我有用

$file = '@' . realpath('path_to_image');

// Fill in your arguments.
$args = array(  
  'access_token' => $token,  
  'image' => $file,
  'aid' => $albumid
);  

// Send the api request.
$data = $facebook->api('/'.$pageid.'/photos', 'post', $args);

Yes below worked for me in many places

$file = '@' . realpath('path_to_image');

// Fill in your arguments.
$args = array(  
  'access_token' => $token,  
  'image' => $file,
  'aid' => $albumid
);  

// Send the api request.
$data = $facebook->api('/'.$pageid.'/photos', 'post', $args);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文