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.

Im building an app that tries to display the last 5 news of certain public page. To access this information I need to get an access token with this:

GET https://graph.facebook.com/oauth/access_token?
        client_id=YOUR_APP_ID
       &client_secret=YOUR_APP_SECRET
       &grant_type=client_credentials

My question is: isn't the app secret to be... well, secret?

If I make a GET query mit jQuery anyone can look into the script file and find out about it. Is this safe?

share|improve this question

1 Answer

up vote 1 down vote accepted

The token never changes (unless password change / block / ...). You should retrieve the token once using your browser. From then on you can use the token without using your app secret.

share|improve this answer
Well, thats what I did yesterday, and today the token wasn't working anymore. Maybe am I missing some setting in the Facebook Developer page? – Dbugger Sep 14 '12 at 9:20

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.