我正在尝试将订阅源发布到我的网站上的个人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/
的样本这只是我认为参数含义的一个示例:
但是当它贴在墙上时,会发生以下情况:
在提到很多帖子后,我以为我会发布这个帖子。
请帮忙。
答案 0 :(得分:0)