Facebook:获取用户的好友时区

发布于 2024-10-09 20:00:30 字数 237 浏览 2 评论 0 原文

我希望我的画布应用程序能够获取用户朋友的时区。

我尝试使用 Graph API 来完成此操作,但我所能得到的只是它们的名称、区域设置和其他一些信息(即使使用 access_token 时也是如此)。 使用 FQL 时,timezone 字段始终为空。

  1. 有办法实现这一点吗?
  2. 如果是这样,您能指出我正确的方向吗?

干杯

I would like my canvas application to obtain time-zones of my user's friends.

I tried doing it with the Graph API but all I can get is their names, locales and a few more (even when using the access_token).
When using FQL the timezone field is always empty.

  1. Is there a way to achieve this?
  2. If so, could you please point me in the right direction?

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

阳光的暖冬 2024-10-16 20:00:30

我想这是不可能的,调用 $this->facebook->api("/friend_ID"); 时仅检索到以下字段:

Array
(
    [id] => 
    [name] => 
    [first_name] => 
    [last_name] => 
    [link] => 
    [gender] => 
    [locale] => 
    [updated_time] => 
)

现在在 文档,以上字段是标记为Publicly available的字段,及时 < code>timezone 字段可供 Facebook 上的每个人使用,这听起来是一样的,但显然不是,无论如何,我发现这个有趣的 Facebook 论坛版主的文章 (不是开发人员!)

还尝试了旧的休息库,首先获取您的 users.getinfo 方法,UID 看起来像 your_id,friend_id,friend_id,friend_id,friend_id 和字段 timezone 你只会得到 <您的时区。

I guess this is not possible, only the following fields were retrieved when calling $this->facebook->api("/friend_ID");:

Array
(
    [id] => 
    [name] => 
    [first_name] => 
    [last_name] => 
    [link] => 
    [gender] => 
    [locale] => 
    [updated_time] => 
)

Now in the documentation, the above fields are the fields marked Publicly available, in time the timezone field is Available to everyone on Facebook which sounds like the same but apparently it's not, anyway I've found this interesting article for a moderator on the facebook forums (not a developer!!)

Also tried the old rest lib, first get a list of your friends from the console and then add your ID and put them in the test console of the users.getinfo method, UIDs looks like your_id,friend_id,friend_id,friend_id,friend_id and fields timezone you'll only get your timezone.

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