由于 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'];
});
希望对别人有帮助
答案 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'];
});
希望对别人有帮助