我正在尝试使用 Facebook Feed Dialog 发布纯文本消息。根据文档,这应该可以通过简单地将'link'参数留空'
https://developers.facebook.com/docs/sharing/reference/feed-dialog
“此帖子附加的链接。通过提要对话框,人们还可以共享纯文本状态更新,而您的应用程序中没有任何内容;只需将链接参数留空即可。”
这样做时,我成功地看到了共享对话框,但是当我输入消息并单击发布时,我收到以下错误:
Action Requires At Least One Reference: The action you're trying to publish
is invalid because it does not specify any reference objects. At least one
of the following properties must be specified: object.
这是我的代码,如果添加链接,它会按预期工作。
FB.init({appId: APP_ID, status: true, cookie: true});
FB.ui({
method: 'feed',
title: "",
link: "",
caption: "",
description: "",
image: ""
}, function(response){});
有谁知道如何从提要对话框中成功发布纯文本消息?