我尝试了以下贝宝代码,但没有显示贝宝稍后按钮。是否有任何条件或只有我们的地理位置会显示
// Loop over each funding source / payment method
paypal_sdk.getFundingSources().forEach(function(fundingSource) {
// Initialize the buttons
var button = paypal_sdk.Buttons({
fundingSource: fundingSource
});
// Check if the button is eligible
if (button.isEligible()) {
// Render the standalone button for that funding source
button.render('#paypal-button-container');
}
});
答案 0 :(得分:0)
决定稍后付款资格的因素有很多,例如交易的货币、买家的位置和意图,以及它不是保险库或订阅交易。例如,尝试使用货币 USD 和位于美国的买家 -- 在沙盒(非实时)模式下,您可以在 SDK 脚本的查询字符串参数中传递参数 &buyer-country=US
以进行测试。