我正在尝试保存卡信息并同时创建客户。客户端应用程序创建一个nonce并将其发送到我的服务器(nodejs),然后调用:
gateway.customer.create({paymentMethodNonce: request.params.nonce})
客户被创建并获得客户ID,我将其保存在数据库中。但是打电话给
gateway.customer.find(customer_id):`
返回:
Customer {
id: '697983269',
merchantId: 'yzkvrqy9qsctn69d',
firstName: null,
lastName: null,
company: null,
email: null,
phone: null,
fax: null,
website: null,
createdAt: '2017-09-25T00:37:29Z',
updatedAt: '2017-09-25T00:37:29Z',
customFields: '',
creditCards: [],
addresses: [],
paymentMethods: [] }
其中有空付款方式数组。我正在使用只需要卡号和exp日期的UI。这也是一个沙箱帐户。