在 Grails 应用程序中,使用 spring security facebook 插件,当用户登录时,应用程序如何获取实际的 facebook 用户名,以便主页可以显示登录的用户名?
问问题
1724 次
1 回答
11
该插件提供 Facebook API access_token
,您必须向 Facebook 请求此类用户详细信息。
例子:
将依赖项添加到 Spring Social Facebook:
dependency {
compile 'org.springframework.social:spring-social-core:1.0.1.RELEASE'
compile 'org.springframework.social:spring-social-facebook:1.0.1.RELEASE'
}
然后在创建用户时从 Facebook 加载它,方法是将以下内容添加到 FacebookAuthService 中:
void onCreate(FacebookUser user, FacebookAuthToken token) {
Facebook facebook = new FacebookTemplate(token.accessToken.accessToken)
FacebookProfile fbProfile = facebook.userOperations().userProfile
//fill the name
//fieldname ('fullname' at this example) is up to you
user.fullname = fbProfile.name
}
也可以看看
于 2013-03-01T06:49:25.853 回答