使用 Graph API 将 Feed 发布到 Facebook - 服务器端

发布于 2025-01-03 04:41:53 字数 1265 浏览 1 评论 0 原文

我正在尝试将提要从我的网站发布到登录用户的个人 Facebook 墙和粉丝页面墙。

<cfhttp url="https://graph.facebook.com/me/feed" method="post">
    <cfhttpparam name="access_token" value="#variables.accessToken#" type="formfield">
    <cfhttpparam name="message" value="#arguments.message#" type="formfield">
    <cfhttpparam name="link" value="#arguments.link#" type="formfield">
    <cfhttpparam name="name" value="#arguments.name#" type="formfield">
    <cfhttpparam name="caption" value="#arguments.caption#" type="formfield">
    <cfhttpparam name="description" value="#arguments.description#" type="formfield">
    <cfhttpparam name="picture" value="#arguments.picturePath#" type="formfield">
</cfhttp>

这是根据 Developers.facebook.com 的代码和 http://net.tutsplus.com/tutorials/php/wrangling-with-the-facebook-graph-api/

这只是我认为参数含义的一个示例:

在此处输入图像描述

但是当它发布到墙上时,会发生以下情况:

  • 消息、图片、名称、标题和描述正确显示
  • 但链接不显示,图片指向其自身,名称上的链接指向图片。

在参考了很多帖子之后,我想我应该发布这个。

请帮忙。

I'm trying to post feeds to the personal facebook wall and the fan page wall from my site for a logged in user.

<cfhttp url="https://graph.facebook.com/me/feed" method="post">
    <cfhttpparam name="access_token" value="#variables.accessToken#" type="formfield">
    <cfhttpparam name="message" value="#arguments.message#" type="formfield">
    <cfhttpparam name="link" value="#arguments.link#" type="formfield">
    <cfhttpparam name="name" value="#arguments.name#" type="formfield">
    <cfhttpparam name="caption" value="#arguments.caption#" type="formfield">
    <cfhttpparam name="description" value="#arguments.description#" type="formfield">
    <cfhttpparam name="picture" value="#arguments.picturePath#" type="formfield">
</cfhttp>

This is as per the code from developers.facebook.com and a sample from http://net.tutsplus.com/tutorials/php/wrangling-with-the-facebook-graph-api/

This is just a sample of what I think the parameters mean:

enter image description here

But when it posts to the wall, the following happens:

  • The message, picture, name, caption and description appear properly
  • But the link does not, the picture points to itself and the link on the name points to the picture.

After referring to numerous posts, I thought I'd post this.

Please help.

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

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

发布评论

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

评论(1

哽咽笑 2025-01-10 04:41:53

您还应该提供协议。

所以试试这个:
http://www.traffikworks.com/community.html

(我放了www,因为你无论如何都使用 301 重定向浏览器)

You should give the protocol as well.

So try this:
http://www.traffikworks.com/community.html

(I put the www, becuase you redirect the browser anyway with 301)

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