Is there a way I can query what permissions the current user has for my Facebook app using Spring Social Facebook?
Is there a way I can query what permissions the current user has for my Facebook app using Spring Social Facebook?
Yes: facebook.userOperations().getUserPermissions() returns a List<String> that will contain the permissions that the user has granted to the application.
Craig Walls
Spring Social Project Lead
Perfect, thanks Craig. I guess I didn't see it as I would've imagined this method would've been in FacebookProfile.