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.

In my iPhone app I want to read news feed from public Facebook page but I don't want in the beginning that the user has log in facebook to see wall of page. I try to pass access_token (in url to graph api) but this access token expire.

Thank you in advance

Javier

share|improve this question

1 Answer

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];
share|improve this answer
With Graph api, I must do this call: [facebook requestWithGraphPath:@"graph.facebook.com/oauth/access_token? client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET& grant_type=client_credentials" andDelegate:self]; and I replace the ID, SECRET ID and credentials? – Camacho Jan 3 '12 at 10:34
See my updated answer. – Juicy Scripter Jan 3 '12 at 10:41
after I call graph api I have this error in request didFailWithError: "Missing redirect_uri parameter." ... in "client_credentials" value I insert "offline_access" is this correct?... the complete expression that I use is this [facebook requestWithGraphPath:@"/oauth/access_token?client_id=203887386362743&client_secr‌​et=37Xd16ad6a4e31cd66956a58f1a200d6&grant_type=offline_access" andDelegate:self]; I change some characters... – Camacho Jan 3 '12 at 11:05
@user946484, nope, this is wrong. You should only replace YOUR_APP_ID and YOUR_APP_SECRET. BTW, you better remove this comment in a hurry and reset your application secret!!! This is something you should keep secret and not share with anyone! – Juicy Scripter Jan 3 '12 at 11:10
Thanks Juicy, I think that some is wrong... and no problem, I change severals characters from my appId and Secret code before I wrote in my post... I hope with your help I can solve this problem, thanks again! – Camacho Jan 3 '12 at 11:19
show 2 more comments

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.