Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

User first_name and last_name limitations on Facebook and Twitter

I need to know the maximum length of users first and last name that he can have on Facebook and Twitter. Our application allows to register using this social networks and we have limitations for the number of characters in user's first and last names. Too long names can spoil slicing. Can anybody help?

like image 255
An6r Avatar asked Jan 18 '26 20:01

An6r


1 Answers

On twitter there's no first_name and last_name. However there is allocation to input name which is 20 Characters Max You can update your twitter name (not username) via this

POST http://twitter.com/account/update_profile.json

https://dev.twitter.com/docs/api/1/post/account/update_profile

As for Facebook the maximum length for each field (that is first name and last name) is 75 Characters

like image 127
Mob Avatar answered Jan 20 '26 22:01

Mob