You may use your application access token for this which may be one of:
YOUR_APP_ID|YOUR_APP_SECRET
- Application Access Token received from
https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&
grant_type=client_credentials
This access_token allow you to get any public content available via API which require access_token
Update:
Using iOS SDK this may looks like:
[facebook requestWithGraphPath:@"/oauth/access_token?client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&
grant_type=client_credentials" andDelegate:self];