Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if access tokens are sensitive information? I believe this is used in APIs? Also, access tokens are used to be stored in databases for future use?

Is it not good practice if it is used in div attrivutes, example : <div id={access_token}>?

Can someone shine some insights into this matter for me?

Thank you

share|improve this question

1 Answer

up vote 2 down vote accepted

Be careful not to take access tokens of your users out to the public, otherwise someone could use that access token to e.g. post from your users accounts (if this permission has been granted). It is no problem to store tokens in a database. But they will expire after a while!

BTW: why would you take access tokens as div id's?

share|improve this answer
I'm not sure if I'm doing it correctly, but I'm trying to integrate instgram's API. and to post they require this curl -F 'access_token=ACCESS-TOKEN' \ https://api.instagram.com/v1/media/{media-id}/likes And I think, correct me if I'm wrong, that I'm using cURL in PHP and supposed to use access_token as the "form data"? So i'm trying to get the access_token with ajax to post it my page where it has the cURL script – andrewliu Jun 2 '12 at 13:17
You added Facebook as a tag, I don't know the Instagram API. But curl -F is the method to send HTTP POST data. Checkout php.net/manual/de/function.curl-setopt.php and have a look at CURLOPT_POSTFIELDS you don't need a html form to send a post request to the server! – Jonas Schwabe Jun 3 '12 at 18:57
I was able to do what I needed. Also, using sessions would just work – andrewliu Jun 3 '12 at 19:43

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.