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

时间:2019-01-10 10:43:45

标签: facebook facebook-graph-api facebook-javascript-sdk

由于 currency 字段的日期为deprecated(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'];
});

希望对别人有帮助

1 个答案:

答案 0 :(得分:3)

由于 currency 字段的日期为deprecated(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'];
});

希望对别人有帮助