在 Facebook API 中按生日日期对我的好友列表进行排序?
我正在创建自己的应用程序来显示即将到来的朋友的生日。我有权从 Facebook 获取这些日期,并且我会在我的网站上显示我所有朋友的出生日期。我唯一的问题是如何显示 ie。即将到来的前 10 个生日?我正在使用 $facebook->api('/me/friends?limit=10) 但不知道如何对它们进行排序。有人帮忙吗?我应该尝试使用哪些代码对它们进行排序?一些 facebook api 代码或 php 代码。如果是 php 那么也许你有一些如何做到这一点的技巧。干杯!
I'm creating my own application to show forthcoming friend's birthday. I have a permission to get this dates from facebook and i'm displaying all my friends with their date of birth on my site. My only question is how to display ie. first 10 forthcoming birthdays? i'm using $facebook->api('/me/friends?limit=10) but have not idea how to sort them. Anyone help? Which code should i try to sort them? some facebook api code or php code. if php then maybe you have some tips how to do this.Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样做,使其像您提到的那样工作:
这将按生日对朋友进行排序...现在您可以使用此数据进行进一步的逻辑
Try This to make it work like you mentioned:
This will sort friends in birthday wise... now you can use this data for further logic
我已经自己解决了这个问题。非常简单的解决方案...也许太简单但效果完美。这是我的代码。也许它对将来的人有帮助;)
$miesiace_slownie 是一个数组,它将来自 facebook 的月份数据转换为本地语言类型。
欢呼并非常感谢^爱夏尔马给予的帮助。给你啤酒;)
i've resolve the problem by myself. quite simple solutions... maybe too simple but works perfect. That's my code. maybe it help someone in future ;)
$miesiace_slownie is a array that's convert month data from facebook into local language type.
cheers and many thanks ^Love Sharma for given help. Beer for you ;)