使用 cURL PHP 发布到 Facebook 用户的留言墙
我正在存储 facebook 用户 ID 和访问令牌。我可以将此信息发布到选定用户的留言墙上吗?此处可以找到以下代码: http://developers.facebook.com/docs/reference/api/post/ 我只是不确定如何用 php 运行它。
curl -F 'access_token=$accessToken' \
-F 'message=Check out this funny article' \
-F 'link=http://www.example.com/article.html' \
https://graph.facebook.com/$facebookid/feed
I'm storing facebook userid's and access tokens. Can i post to a selected user's wall with this information? The following code is found here: http://developers.facebook.com/docs/reference/api/post/
I'm just not sure how to run it with php.
curl -F 'access_token=$accessToken' \
-F 'message=Check out this funny article' \
-F 'link=http://www.example.com/article.html' \
https://graph.facebook.com/$facebookid/feed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Facebook SDK。这比自己处理CURL要好得多。
Use Facebook SDK. It's much better than handling CURL by yourself.
我尝试了 cURL 方法,但我不知道 $action_name 和 $action_link 应该更改为什么。
我成功获取了访问令牌,所以我只需要这两个参数。
I tried the cURL method but I don't know what should be $action_name and $action_link changed to.
I get the access token successfully, so only these 2 parameters are what I need.