Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a Grails application, with spring security facebook plugin, when user logs in, how can the application get actual facebook user name so that the home page can display the logged in user name?

share|improve this question

1 Answer

up vote 5 down vote accepted

The plugin provides Facebook API access_token, and you have to request such user details from Facebook.

Example:

Add dependency to 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'
}

and then load it from Facebook on user creation, by adding following into FacebookUserService:

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
}

See also

share|improve this answer
Thanks!. Really appreciate your prompt/detailed response and help. – Soumya Pothu Mar 3 at 20:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.