What's the minimal length for storing a Facebook API Access token in SQL Server?
|
closed as not a real question by bzlm, balexandre, BK., Book Of Zeus, Jarrod Roberson Feb 6 '12 at 3:54
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I guess you want store it in a mysql database. you can also check fb full blog post here https://developers.facebook.com/blog/post/572 |
|||||||
|
|
With the way and frequency Facebook likes to break things for developers, the SQL server equivalent of nvarchar(max) is the only safe way. |
|||||||||||||||
|
|
EDIT As the question has changed. I'd suggest you nvarchar(400). This is really too much, but genrally acceptable. As a database developer you always must keep in mind that there can be unpredicted unicode, even when you are absolutely sure that the incoming length will be very small and there will only be English letters. P.S. domain names always deemed to be only English letters, untill now. http://путин.рф is an example. This is a working domain. |
|||||||||||||||||||||
|