我在Android应用程序中使用facebook API时遇到了麻烦。
我的应用上有一个登录按钮。我希望用户点击登录按钮并与Facebook帐户关联。但是,我想在没有facebook预定义设计的情况下这样做。
我在理解facebook API方面遇到了很大麻烦,我很乐意帮忙。
我在网上找到的所有文档对我来说都不是很清楚。 非常感谢你。
答案 0 :(得分:1)
我在项目link中使用了这个。
这非常简单实用。
获取您需要撰写的个人资料的示例:
mSimpleFacebook.getProfile(new OnProfileRequestAdapter()
{
@Override
public void onComplete(Profile profile)
{
String id = profile.getId();
String firstName = profile.getFirstName();
String birthday = profile.getBirthday();
String email = profile.getEmail();
String bio = profile.getBio();
// ... and many more properties of profile ...
}
});
祝你好运!