代表用户在用户墙上发帖

发布于 2024-09-29 23:39:38 字数 505 浏览 2 评论 0原文

我试图弄清楚使用 Graph API 是否可以实现以下操作:

  • 代表该用户在用户墙上发布一条消息(具有publish_stream 和 Offline_access 权限集),因此发布者不依赖于当前会话。

这似乎可以通过旧的rest api实现(stream.publish) 。不过,此函数有一些已知的错误,并且似乎已被弃用。

使用新的 api,可以在用户墙上发布,但它不会将海报作为参数(就像stream.publish 一样)。请参阅此处

这是因为 Facebook 不再允许此类第三方发布,还是我在这里遗漏了一些东西? 任何帮助将不胜感激,

I'm trying to figure out if the following is possible with the Graph API:

  • Post a message on the wall of a user (who has permissions publish_stream and offline_access set) on behalf of that user, so the poster doesn't depend on the current session.

This seemed to be possible with the old rest api (stream.publish). This function has some known bugs though and seems te be deprecated.

With the new api it's possible to publish on a users wall but it doesn't take the poster as an argument (as did stream.publish). See here.

Is this because Facebook doesn't allow such third party publishing anymore, or am I missing something here?
Any help would be greatly appreciated,

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

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

发布评论

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

评论(1

不可一世的女人 2024-10-06 23:39:38

从这里 http://developers.facebook.com/docs/reference/javascript/FB .api

如果您有经过身份验证的用户
publish_stream 权限,以及
想向他们发布一个新故事
饲料:

var body = 'Reading Connect JS documentation';
FB.api('/me/feed', 'post', { message: body }, function(response) {
  if (!response || response.error) {
    alert('Error occured');
  } else {
    alert('Post ID: ' + response);
  }
});

这是 javascript 版本,但我很确定 php 也有一个等效的版本

from here http://developers.facebook.com/docs/reference/javascript/FB.api

If you have an authenticated user with
the publish_stream permission, and
want to publish a new story to their
feed:

var body = 'Reading Connect JS documentation';
FB.api('/me/feed', 'post', { message: body }, function(response) {
  if (!response || response.error) {
    alert('Error occured');
  } else {
    alert('Post ID: ' + response);
  }
});

it is the javascript version but i am pretty sure there is an equivalent one for php

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