2012-03-11 79 views
1

我试图让我的Facebook应用程序有英文和日文版。是否有可能拥有多种语言的Facebook应用程序?

我尝试使用标签,但不能让他们的工作: http://developers.facebook.com/docs/internationalization/

我当时以为我只是使应用程序的两个版本,一个在英国,另一个在日本。当我打开我的应用程序时,会显示oauth权限对话框。我批准了该应用程序,然后它将我带到一个循环的页面,每次生成一个新的$ _GET ['code']。然后,我点击屏幕左上角的“脸谱”。然后我再次点击我的应用程序,这次我可以用英语或日语访问它。我怎样才能阻止应用程序第一次循环?如何根据用户区域设置直接转到应用程序的版本?谢谢

<?php 

function parse_signed_request($signed_request, $secret) { 
    list($encoded_sig, $payload) = explode('.', $signed_request, 2); 

    // decode the data 
    $sig = base64_url_decode($encoded_sig); 
    $data = json_decode(base64_url_decode($payload), true); 

    if (strtoupper($data['algorithm']) !== 'HMAC-SHA256') { 
    error_log('Unknown algorithm. Expected HMAC-SHA256'); 
    return null; 
    } 

    // check sig 
    $expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true); 
    if ($sig !== $expected_sig) { 
    error_log('Bad Signed JSON signature!'); 
    return null; 
    } 

    return $data; 
} 

function base64_url_decode($input) { 
    return base64_decode(strtr($input, '-_', '+/')); 
} 

$result = parse_signed_request($_REQUEST['signed_request'],"app_secret"); 
$locale = $result['user']['locale']; 
$token = $result['oauth_token']; 

if ($token != ""){ 
    if ($locale == "ja_JP"){ 
     if ($_SERVER['HTTPS']){ 
      header("Location: https://secure.example.com/facebook/ja/index.php"); 
      exit; 
     } 
     else { 
      header("Location: http://example.com/facebook/ja/index.php"); 
      exit; 
     } 
    } 
    else{ 
     if ($_SERVER['HTTPS']){ 
      header("Location: https://secure.example.com/facebook/en/index.php"); 
      exit; 
     } 
     else { 
      header("Location: http://example.com/facebook/en/index.php"); 
      exit; 
     } 
    } 
} 
else { 

    if($_SERVER['HTTPS']){ 
     $canvas_page = "https://secure.example.com/facebook/"; 
    } 
    else { 
     $canvas_page = "http://example.com/facebook/"; 
    } 
    $app_id = "my_app_id"; 
    $auth_url = "http://www.facebook.com/dialog/oauth?client_id=" 
      . $app_id . "&redirect_uri=" . urlencode($canvas_page) . "&scope=email"; 
    $signed_request = $_REQUEST["signed_request"]; 
    list($encoded_sig, $payload) = explode('.', $signed_request, 2); 
    $data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true); 
    echo("<script> top.location.href='" . $auth_url . "'</script>"); 
    exit; 

} 

?> 

回答

2

你可以把你所有的文本放在一个简单的基于语言环境的数组中。你首先需要获得用户所在的区域,然后用它作为重点

$loc["ja_JP"]["MyText"] = "My JP text"; 
$loc["en_US"]["MyText"] = "My US text"; 

$result = parse_signed_request($_REQUEST['signed_request'],"app_secret"); 
$locale = $result['user']['locale']; 

echo $loc[$locale]["MyText"]; 

资源(例如特定的本地化图片),你可以得到一个基于地区的目录中的文件。

相关问题