Prompt user for permission - facebook developer toolkit
I am creating a small facebook application in C #. I want to prompt the user to allow them to post news feeds to their profile. When I try to use the facebook developer toolkit with the following command (to see if the permission is already in place):
API.permissions.checkAvailableApiAccess (API.ApplicationKey)
I am getting error 100 (not even written on facebook wiki)
Does anyone of you know how to fix this, and of course how to prompt the user for the appropriate pre-check request?
Thank!
+2
source to share
1 answer
You probably need to authenticate your facebook app and user with OAuth. Try looking at http://developers.facebook.com/docs/authentication/ . Using oAuth, you can authenticate the user and set permissions for him to work with the facebook API.
+1
source to share