使用 Graph API 将 Feed 发布到 Facebook - 服务器端
我正在尝试将提要从我的网站发布到登录用户的个人 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/
这只是我认为参数含义的一个示例:
但是当它发布到墙上时,会发生以下情况:
- 消息、图片、名称、标题和描述正确显示
- 但链接不显示,图片指向其自身,名称上的链接指向图片。
在参考了很多帖子之后,我想我应该发布这个。
请帮忙。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还应该提供协议。
所以试试这个:
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)