检测 Facebook API 用户货币的新方法

Ant*_*rov 4 facebook facebook-graph-api facebook-javascript-sdk

由于货币字段自2019 年 1 月 8 日起已弃用,您可以在payment_mobile_pricepoints对象中找到user_currency

不要忘记将 payment_mobile_pricepoints 添加到请求的字段列表中

FB.api("/me", {fields:"payment_mobile_pricepoints"}, function(result){
    var currencyCode = result['payment_mobile_pricepoints']['user_currency'];
});
Run Code Online (Sandbox Code Playgroud)

希望它对某人有帮助

Ant*_*rov 5

由于货币字段自2019 年 1 月 8 日起已弃用,您可以在payment_mobile_pricepoints对象中找到user_currency

不要忘记将 payment_mobile_pricepoints 添加到请求的字段列表中

FB.api("/me", {fields:"payment_mobile_pricepoints"}, function(result){
    var currencyCode = result['payment_mobile_pricepoints']['user_currency'];
});
Run Code Online (Sandbox Code Playgroud)

希望它对某人有帮助