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 am trying to get a page feed through the OpenGraph API. I have registered an app for this purpose and I am using ASP.NET to display the results on a web page.

Here's what I'm doing in the C# code, step by step:

  1. Request https://graph.facebook.com/oauth/access_token?client_id=MYCLIENTID&client_secret=MYCLIENTSECRET&grant_type=client_credentials to get an access token.

  2. Request the page https://graph.facebook.com/THEPAGENAME/feed?access_token=ACCESSTOKEN with the access token.

Using this method, I am able to retrieve the feed from, for example, the Coca-Cola page (graph.facebook.com/cocacola/feed) without problems. However, if I try an alcoholic brand such as Smirnoff or Jim Beam, I get an empty result set back.

From reading other questions on this subject, I have come to understand that this is because pages for alcohol brands are age-restricted and marked as having alcohol-related content in their settings, and that the app settings need to "reflect" this in order to access the data.

After reading this I tried configuring my app restrictions for the maximum age requirement and also ticked the "Contains alcohol" checkbox. I also tinkered with the geographic restriction, entering my own country (I am able to view these pages from my own Facebook account). This doesn't make any difference.

Questions:

  1. Does my app restrictions need to EXACTLY reflect the restrictions of the page?

  2. Is this at all possible to do using the authentication method I am using? I am new to OAuth and there's obviously no callback URL being used (or Facebook dialog displayed to anyone) when I am getting the access token.

  3. If it's not possible to do using my method, how do I get the feed from a page with alcohol-related content onto a webpage?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.