为代币化信用卡充值
Charge a Tokenized Credit Card
我正在使用 Authorize.net。我不想在每次付款时发送用户卡信息。我发现了这个:
Charge a tokenized credit card
但是我如何从令牌服务中获取卡令牌信息并填写这些字段?
<cardNumber>5424000000000015</cardNumber>
<expirationDate>1220</expirationDate>
<cryptogram>EjRWeJASNFZ4kBI0VniQEjRWeJA=</cryptogram>
<tokenType>chasepay</tokenType>
<tokenRequestorID>123456789AB</tokenRequestorID>
使用此方法要求您的处理器支持支付网络令牌化,并且令牌必须由经过认证的令牌提供商发行。例如,请参阅
https://developer.visa.com/products/vts/guides 有关 Visa 令牌服务的详细信息。
您可能正在寻找 customer profiles which allows you to securely store card data for future use. Or you can use the new Accept.js Javascript library 以避免通过您的服务器发送卡数据。
您可以使用 authorize.net 客户信息管理器 (CIM) 服务来避免用户每次都输入银行卡详细信息。当 he/she 输入卡详细信息时,CIM 首次为每个用户创建支付配置文件,并作为响应给出支付配置文件 ID,您可以在下次付款时使用该 ID 从信用卡中扣款。
您可以在下面 link.
中探索语言和示例代码
http://developer.authorize.net/api/reference/#customer-profiles
https://github.com/AuthorizeNet
谢谢
我正在使用 Authorize.net。我不想在每次付款时发送用户卡信息。我发现了这个:
Charge a tokenized credit card
但是我如何从令牌服务中获取卡令牌信息并填写这些字段?
<cardNumber>5424000000000015</cardNumber>
<expirationDate>1220</expirationDate>
<cryptogram>EjRWeJASNFZ4kBI0VniQEjRWeJA=</cryptogram>
<tokenType>chasepay</tokenType>
<tokenRequestorID>123456789AB</tokenRequestorID>
使用此方法要求您的处理器支持支付网络令牌化,并且令牌必须由经过认证的令牌提供商发行。例如,请参阅 https://developer.visa.com/products/vts/guides 有关 Visa 令牌服务的详细信息。
您可能正在寻找 customer profiles which allows you to securely store card data for future use. Or you can use the new Accept.js Javascript library 以避免通过您的服务器发送卡数据。
您可以使用 authorize.net 客户信息管理器 (CIM) 服务来避免用户每次都输入银行卡详细信息。当 he/she 输入卡详细信息时,CIM 首次为每个用户创建支付配置文件,并作为响应给出支付配置文件 ID,您可以在下次付款时使用该 ID 从信用卡中扣款。 您可以在下面 link.
中探索语言和示例代码http://developer.authorize.net/api/reference/#customer-profiles
https://github.com/AuthorizeNet
谢谢