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.
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.
|
|
|
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). |
|||
|
|