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.

I need to store oauth_token and oauth_token_secret of each user granting access to my web app and I was wondering if these tokens would have a max length so I could use varchar(n). I'm aware Facebook's is 255.

share|improve this question

1 Answer

Check out this Quora thread: http://www.quora.com/OAuth-1/Whats-the-maximum-length-of-an-OAuth-access-token-key-secret-pair

Summary: There's apparently no official limit on the length of a Oauth token/secret, but it seems Twitter is using an internal limit of 50 chars.

My recommendation: Don't limit the size. Use "varchar" (without a number).

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.