如何使用 2007 Facebook PHP SDK 访问连接?

发布于 2024-10-31 21:50:05 字数 369 浏览 1 评论 0原文

因此,使用新的图形 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纵情客 2024-11-07 21:50:05

为什么不同时使用新版本和旧版本呢?您可能需要编辑其中一个版本并更改文件中的类名称,以便在包含文件时不会发生冲突。但您应该能够创建 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.

负佳期 2024-11-07 21:50:05

得到了我自己的答案。使用旧的 REST API 做同样的事情很简单:

$facebook->api_client->users_getInfo($fb_id, 'status')

现在需要弄清楚 Brent Baisley 关于同时运行两个实例的建议......这将非常简洁。

Got my own answer. Doing the same thing with the old REST API is simple with:

$facebook->api_client->users_getInfo($fb_id, 'status')

Now need to figure out Brent Baisley's suggestion about having two instances running at the same time...that would be pretty neat.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文