Does someone know how we can use permissions with Facebook C# SDK?
I mean to pass a list of permissions via Facebook C# SDK?
Thank you!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you need permissions only to get token. That’s always achieved with client-side javascript, not with C# backend code. Look here – http://csharpsdk.org/docs/web/getting-started – see Requesting an Access Token from a Website section. It shows how to request token with certain permissions from the JavaScript code. After that token is granted, and passed back to the backend – that’s where you can start using it with C# SDK – doing things like posting to the feed, uploading images etc – but you won’t do anything with permissions on the backend.