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.
[facebook requestWithGraphPath:@"/oauth/access_token?client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&
 grant_type=client_credentials" andDelegate:self];

question is How to get Facebook access token without login ?

share|improve this question
1  
Where's the question, what have you tried, where's the problem, where's the code, etc? – Panagiotis Kanavos Dec 28 '12 at 8:54
You must login into Facebook in-order to get Access token – senthilbp Dec 28 '12 at 9:32

1 Answer

try for getting app access token not user access token

$app_access_token = $app_id . '|' . $secret_key;

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.