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 an app on facebook that is written in Facebook c# SDK and I need to restrict it to users above the age of 18. How do I add age restriction to Facebook Canvas app?

share|improve this question

1 Answer

You can add restrictions via the application graph api endpoint: https://developers.facebook.com/docs/reference/api/application/ (see restrictions section).

To restrict your app to users that are >= 18 use this call (replace APP_ID with your app id) https://graph.facebook.com/APP_ID?restrictions={"age":"18+"}

You can find some more examples here: https://developers.facebook.com/blog/post/574/

You can also edit these settings in the App Dashboard, in the Advanced settings page for your app

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.