问题描述
我在使用Facebook C#SDK。我怎样才能得到用户的语言,这样我就可以相应地显示所有邮件,而不强迫用户手动选择自己喜欢的语言?
I'm using the Facebook C# SDK. How can I get language of the user, so I can display all messages accordingly without forcing the user to choose his preferred language manually?
推荐答案
如果您正在开发一个Web应用程序,那么你可以使用接受语言
HTTP头检测语言
If you are developing a web app, then you can use Accept-Language
Http header to detect the language
修改1
有关WinForms应用程序,你可以使用系统.Globalization.CultureInfo.CurrentCulture.Name
。
For winforms application, you can use System.Globalization.CultureInfo.CurrentCulture.Name
.
EDIT2
要获得区域设置
使用FB REST API:
To get the locale
using FB REST API :
dynamic fbResult = new Uri("https://graph.facebook.com/AngelaMerkel?access_token=AAABkECTD......").GetDynamicJsonObject();
Console.WriteLine(
fbResult.locale ?? "-" + " > " + //<----
fbResult.location.country + " " + //<----
fbResult.location.city + " " + //<----
fbResult.name + " " +
fbResult.gender + " " +
fbResult.link + " " +
fbResult.updated_time);
您可以找到有关我的扩展方法的信息 GetDynamicJsonObject
You can find info about my extension method GetDynamicJsonObject
here
这篇关于Facebook的C#SDK获取用户的语言/区域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!