申请带图片?

发布于 2024-12-27 13:13:25 字数 118 浏览 0 评论 0原文

我想向用户的朋友发布一个带有请求特定图像/图片的应用请求。不幸的是,apprequests 似乎不支持任何图片/图像/附件机制,并且标准应用程序图标是不够的。 对于添加图像的请求是否有解决方案,或者我是否必须使用流或提要?

I want to post an apprequest to the friends of a user with a request-specific image/picture. Unfortunately, the apprequests do not seem to support any picture/image/attachement mechanism, and the standard application icon is not sufficient.
Is there a solution for requests to add images, or do I have to use stream or feed instead?

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

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

发布评论

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

评论(1

つ可否回来 2025-01-03 13:13:26

您无法自定义应用程序请求中显示的图像 - 正如您所说,它使用在应用程序设置中上传的标准应用程序图像。

不过,您可以在使用Feed 对话框时选择照片以及其他信息例如描述、名称、链接和标题,如下所示:

var obj = {
  method: 'feed',
  link: 'https://developers.facebook.com/docs/reference/dialogs/',
  picture: 'http://fbrell.com/f8.jpg',
  name: 'Facebook Dialogs',
  caption: 'Reference Documentation',
  description: 'Using Dialogs to interact with users.'
};

FB.ui(obj);

You can not customize the image that appears in the apprequest - as you have stated it used the standard application image that was uploaded in the app's settings.

You can however choose a photo when using the Feed Dialog as well as other information such as the description, the name, the link and a caption as demonstrated below:

var obj = {
  method: 'feed',
  link: 'https://developers.facebook.com/docs/reference/dialogs/',
  picture: 'http://fbrell.com/f8.jpg',
  name: 'Facebook Dialogs',
  caption: 'Reference Documentation',
  description: 'Using Dialogs to interact with users.'
};

FB.ui(obj);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文