本文介绍了如何使用Hackbook样品得到Facebook好友的出生日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Android的新的,并得到朋友一行还在我只得到朋友的名字使用Facebook的Android开发者HACKBOOK示例应用程序,通过点击,但在这里,我也想展示即将到来的生日我的FB的朋友,无论是使用图形API或FQL
I am new in Android, and using HACKBOOK sample application for Facebook Android Developers, by click on Get Friends row still i am only getting name of friends but here i also want to show upcoming birthdays for my fb friends,either by using Graph API or FQL
如: -
亨利
打开今天25
Plumbla
满18岁10天
Craley
变成了30626天
推荐答案
在创建请求,你需要生日添加到域的参数。
When you create the request, you need to add "birthday" to the "fields" parameter.
在Hackbook,它应该是这样的:
In Hackbook, it would look like this:
Bundle params = new Bundle();
params.putString("fields", "name,picture,location,birthday");
您可以看到其他可能的领域。
You can see the other possible fields from this doc.
这篇关于如何使用Hackbook样品得到Facebook好友的出生日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!