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.

I have followed this simple tutorial. But how can I ask for friends_photos permission?

share|improve this question

1 Answer

The tutorial in question is very basic. You need to add a references to the Facebook Web MVC C# SDK dlls. The easiest way to do this is using NuGet. To add the reference, right click on “References”, and then click “Add Library Package Reference…”. Do a search for FacebookWebMVC and install it.

In the controller you will need to add an attribute the the page action, this will trigger the permission to access "friends_photos".

[CanvasAuthorize(Permissions = "friends_photos")]
public ActionResult Index()
{
     return View();
}
share|improve this answer

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.