如何检测在页面中访问我的应用程序选项卡的用户的配置文件lang


how to detect profile lang for the user that access my app tab in a page?

如何找出在页面中访问我的应用程序选项卡的用户的配置文件lang ?我有一个应用程序,写在php和提供一个应用程序选项卡。选项卡已添加到我的页面并正在运行…

现在,对于用户访问选项卡,我想知道它的区域设置…如何通过PHP sdk来实现?

你可以试试:

$facebook = new Facebook(array(
      'appId'  => 'xxx',
      'secret' => 'xxx',
      'cookie' => true, // enable optional cookie support
));
$signed_request = $facebook->getSignedRequest();
$locale = $signed_request['user']['locale'];
$country = $signed_request['user']['country'];
echo "locale =".$locale;

未经测试,但可能对您有所帮助:)