Skip to content

Commit 9633c8f

Browse files
authored
Merge pull request #1 from CyberSource/master
Update from upstream repo
2 parents dc4f07f + 87b7c56 commit 9633c8f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Storing your customer’s card data can dramatically increase your repeat-custom conversion rate, but can also add additional risk and PCI DSS overhead. This can be mitigated by tokenizing card data. CyberSource will store your customer’s card data, replacing it with a token that can only be used by you.
66

7-
Flex Token API is our most secure method for Tokenizing card data. Your customer’s card number is encrypted on their own device, for example inside a browser or native app, and sent directly to CyberSource. This means card data bypasses your systems altogether, typically qualifying e-commerce only merchants for [SAQ A-EP](https://www.pcisecuritystandards.org/documents/Understanding_SAQs_PCI_DSS_v3.pdf).
7+
Flex Token API is a secure method for Tokenizing card data. Your customer’s card number is encrypted on their own device, for example inside a browser or native app, and sent directly to CyberSource. This means card data bypasses your systems altogether, typically qualifying e-commerce only merchants for [SAQ A-EP](https://www.pcisecuritystandards.org/documents/Understanding_SAQs_PCI_DSS_v3.pdf).
88

99
On-device encryption helps to protect your customers from attacks on network middleware such as app accelerators, DLPs, CDNs, and malicious hotspots.
1010

java/spring-boot/src/main/java/com/cybersource/flex/vdp/VDPEnpoints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package com.cybersource.flex.vdp;
66

77
public enum VDPEnpoints {
8-
Sandbox("https://sandbox.api.visa.com/cybersource/payments/flex/v1/keys", "https://sandbox.api.visa.com/cybersource/payments/flex/v1/tokens"),
8+
Sandbox("https://sandbox.api.visa.com/cybersource/payments/flex/v1/keys", "https://sandbox.webapi.visa.com/cybersource/payments/flex/v1/tokens"),
99
Production("https://api.visa.com/cybersource/payments/flex/v1/keys", "https://api.visa.com/cybersource/payments/flex/v1/tokens");
1010

1111
private final String keysEnpoint;

java/spring-boot/src/main/resources/public/flex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
var _endpoints = {
1111
keys: "https://sandbox.api.visa.com/cybersource/payments/flex/v1/keys",
1212
// note that you mustn't pass API Key with a call to tokens endpoint.
13-
tokens: "https://sandbox.api.visa.com/cybersource/payments/flex/v1/tokens"
13+
tokens: "https://sandbox.webapi.visa.com/cybersource/payments/flex/v1/tokens"
1414
}
1515
/* PRIVATE FUNCTIONS */
1616
var _isFunction = function(functionToCheck) {

0 commit comments

Comments
 (0)