gpt4 book ai didi

facebook - 如何发布包含 2 张图片的墙贴

转载 作者:行者123 更新时间:2023-12-03 22:26:45 25 4
gpt4 key购买 nike

我正在开发一个小应用程序,人们可以在其中比较他和他 friend 的不同照片。

该应用程序非常简单,我对它没有任何问题。当用户试图在他们的墙上发布时,问题就来了。我希望帖子是这样的:

enter image description here

我通过做类似的事情知道:

$parameters = array('message' => 'this is my message',
'name' => 'Name of the app',
'caption' => "Caption of the Post",
'link' => 'http://www.link.com',
'description' => 'description',
'picture' => 'http://mysite.com/pic.gif');

$result = $facebook->api('/user_id/feed/', 'post', $parameters );

您可以在墙上发帖,但这会限制该应用只能发布一张照片,我希望用户能够发布两张不同的照片。

有没有办法发布像图中那样的帖子?


编辑:

添加了一张图片,可以更好地解释我想要什么。

enter image description here

最佳答案

无需深入了解 Facebook API(因为我从未见过 FB 应用程序发布两张照片,我猜这是不可能的 - 我看到的大多数应用程序都是允许的垃圾邮件......),我可能首先使用 PHP 和 ImageMagick 类之类的东西在服务器端动态合成两个图像(并做任何我想做的叠加)。

然后,只需向 Facebook 提供执行合成的 PHP 脚本的 URL,例如

$parameters = array('message' => 'this is my message',
'name' => 'Name of the app',
'caption' => "Caption of the Post",
'link' => 'http://www.link.com',
'description' => 'description',
'picture' => 'http://mysite.com/pic.php?pic1_id=1234&pic2_id=2345&favorite=pic1');

$result = $facebook->api('/user_id/feed/', 'post', $parameters );

当然,我不知道 Facebook 会采用什么样的尺寸来张贴墙上的照片 - 它可能不够宽,无法实现。不过,我会尝试一下...

关于facebook - 如何发布包含 2 张图片的墙贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6448903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com