使用curl PERL发布到Facebook用户的墙
我正在存储 facebook 用户 ID 和访问令牌。我可以将此信息发布到选定用户的留言墙上吗?以下代码可在 Facebook 开发人员参考中找到。
我只是不确定如何使用Perl运行它。
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
或这段代码:
curl -F 'access_token=$accessToken' \
-F 'photo=http://samples.ogp.me/$appID' \
'https://graph.facebook.com/me/$appNameSpace:$objectType'
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 at Facebook's developer reference.
I'm just not sure how to run it with Perl.
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
or this code:
curl -F 'access_token=$accessToken' \
-F 'photo=http://samples.ogp.me/$appID' \
'https://graph.facebook.com/me/$appNameSpace:$objectType'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用 Facebook::Graph模块来做你需要做的事情?它是 facebook API 的丰富包装。
Why not use the Facebook::Graph module to do what you need? It's a rich wrapper around the facebook API.
您需要使用这些表单数据执行 HTTP POST 请求,请参阅方法 <代码>发布在LWP::UserAgent中。
You need to perform a HTTP POST request with these form data, see method
post
in LWP::UserAgent.