从嵌入式应用程序创建 Facebook 墙帖
我正在开发一个项目,我想向用户 Facebook 页面发布留言墙,但问题是该程序将在非常有限的系统上运行,而我与 Facebook 交谈的唯一方法是通过 C/ 中的套接字C++。 有人有如何执行此操作的代码示例吗? 询问用户名/密码是没有问题的,所以我会得到这个,但我也希望能够完成这一切,而无需他们向 Facebook 页面添加应用程序。
Facebook.com 上的所有文档都是针对您可以显示网络浏览器的情况,但一定有某种方法可以做到这一点,对吧?
/维克托
I'm working on a project where I want to post a wall message to the users Facebook page but the problem is that the program will run on a very limited system and the only way I have to talk with Facebook is via sockets in C/C++.
Anyone have any code examples of how to do this?
Asking for the username/password is no problem so I will have this but I would also like to be able to do all this without them having to add a application to there Facebook page.
All documentation on Facebook.com is for when you can show a web browser but there must be some way you can do this, right?
/Viktor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
套接字<-> Facebook?
正确的方法是使用 facebook 的 REST api 或 CONNECT。您可以尝试使用 oauth2 进行身份验证,然后进行 http 调用。您可以尝试使用curl。我不认为你可以使用套接字,除非你在 facebook 的层内。
sockets <-> Facebook?
the right way to do that is using facebook's REST api or CONNECT. You could try to use oauth2 to authenticate and then make http calls. You can try to use curl. I don't think you can use sockets unless you are inside facebook's layer.