如何使用 2007 Facebook PHP SDK 访问连接?
因此,使用新的图形 API,我可以通过简单的方式访问用户的状态,例如:
$facebook->api('/me/statuses');
但是,我目前陷入较旧的 Facebook PHP 库(~2007 年,版权所有 2004-2009)。稍后会切换,但现在需要使其与旧库一起使用。
我该如何做同样的事情(获取用户的状态或其他允许的连接)。
$facebook = new Facebook(API_KEY, SECRET);
问题:如果 facebook 对象的定义如下:我没有看到任何对旧文档有帮助的引用,
谢谢!
so with the new graph API i can access a user's statuses with something straightforward like:
$facebook->api('/me/statuses');
However, I am currently stuck with the older Facebook PHP library (~2007, copyright 2004-2009). Will switch later but for now need to make this work with the old library.
Question: How do I do the same thing (get a user's statuses, or other allowed connections) given a facebook object has been defined like:
$facebook = new Facebook(API_KEY, SECRET);
I don't see any references to the old documentation that could help.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不同时使用新版本和旧版本呢?您可能需要编辑其中一个版本并更改文件中的类名称,以便在包含文件时不会发生冲突。但您应该能够创建 2 个实例,一个使用新版本,另一个使用旧版本。
但不管怎样,这两个版本最终都以curl 请求为主。您可以在代码中搜索curl_exec以找到所有内容最终都通过的第1个函数。在旧版本和新版本中都是如此。
Why not use both the new version and the old version? You will probably need to edit one of the versions and change the name of the class in the file so there are no conflicts when including the files. But you should be able to create 2 instances, one with the new version and one with the old.
But regardless, both versions in the end to a curl request. You can search the code for curl_exec to find the 1 function that everything eventually funnels through. This is true in both the older and new versions.
得到了我自己的答案。使用旧的 REST API 做同样的事情很简单:
现在需要弄清楚 Brent Baisley 关于同时运行两个实例的建议......这将非常简洁。
Got my own answer. Doing the same thing with the old REST API is simple with:
Now need to figure out Brent Baisley's suggestion about having two instances running at the same time...that would be pretty neat.