From 8702c5fd3e8046f948381e5017bd85d1955857fc Mon Sep 17 00:00:00 2001 From: lbailly Date: Sun, 24 Jun 2018 22:31:29 +0200 Subject: [PATCH] Update environment.go Hi, For my case, the domain https://%s-%s-pal-live.adyen.com/pal/servlet is not working. According to my Adyen console, I had to replace adyen.com by adyenpayments.com so I think it should be the case for everyone too ? Thanks, Ludovic --- environment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.go b/environment.go index ac8f7c3..d58417d 100644 --- a/environment.go +++ b/environment.go @@ -28,7 +28,7 @@ var Testing = Environment{ // Production - instance of production environment var Production = Environment{ - apiURL: "https://%s-%s-pal-live.adyen.com/pal/servlet", + apiURL: "https://%s-%s-pal-live.adyenpayments.com/pal/servlet", clientURL: "https://live.adyen.com/hpp/cse/js/", hppURL: "https://live.adyen.com/hpp/", checkoutURL: "https://%s-%s-checkout-live.adyen.com/services/PaymentSetupAndVerification",