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.

In many human languages grammar requires usage of cases like genetive, accusative etc. Facebook itself is capable of declining the (human) names. For example, if the primary language is russian it displays " became friends with " where is in an instrumental case (form). Is it possible to get a user name in a specific case using facebook API?

EDIT: at least, it is possible to retrieve the user name in a different language by adding e.g. ?locale=ru_RU to the graph API query.

share|improve this question
1  
Nice question. Though I can bet there is no API methods for that. – zerkms Sep 9 '12 at 23:04

1 Answer

Facebook has some details for each user that are saved

https://developers.facebook.com/docs/reference/api/user/

Each Facebook user has only 1 "name" field saved and it can be in any language that the user chooses.

When you retrieve this information using Facebook graph-API you will have no indication in what language the information is.

so for your question with using ONLY Facebook API you cant get the user name in a specific case ( genitive, accusative etc) and you cannot add any parameter to the request (?locale=ru_RU)

share|improve this answer
Regarding the locale parameter - your answer is incorrect. With ?locale=ru_RU I am able to retrieve the user name in Russian. Without this parameter I get it in English. This feature is not well-documented but it is there. – Oleg Khaschansky Feb 8 at 16:17

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.