From bc459324bdbc9739554cb64e5833c4aa08d67e4c Mon Sep 17 00:00:00 2001 From: Ron Ferguson Date: Wed, 24 Jun 2020 10:16:35 -0500 Subject: [PATCH 1/3] Updated Silverpop branded domain URLs with Acoustic branded domain URLs. --- src/Silverpop/EngagePod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Silverpop/EngagePod.php b/src/Silverpop/EngagePod.php index 0a4f5e9..d5d952f 100644 --- a/src/Silverpop/EngagePod.php +++ b/src/Silverpop/EngagePod.php @@ -30,7 +30,7 @@ public function __construct($config) { // It would be a good thing to cache the jsessionid somewhere and reuse it across multiple requests // otherwise we are authenticating to the server once for every request - $this->_baseUrl = 'http://api' . $config['engage_server'] . '.silverpop.com/XMLAPI'; + $this->_baseUrl = 'https://api-campaign-us-' . $config['engage_server'] . '.goacoustic.com'; $this->_login($config['username'], $config['password']); } From 476cc646619356b87bf9ecb81f809c9d4e7a28e6 Mon Sep 17 00:00:00 2001 From: Ron Ferguson Date: Wed, 24 Jun 2020 10:18:04 -0500 Subject: [PATCH 2/3] Updated Silverpop branded domain URLs with Acoustic branded domain URLs. --- src/Silverpop/EngagePod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Silverpop/EngagePod.php b/src/Silverpop/EngagePod.php index d5d952f..2b98411 100644 --- a/src/Silverpop/EngagePod.php +++ b/src/Silverpop/EngagePod.php @@ -30,7 +30,7 @@ public function __construct($config) { // It would be a good thing to cache the jsessionid somewhere and reuse it across multiple requests // otherwise we are authenticating to the server once for every request - $this->_baseUrl = 'https://api-campaign-us-' . $config['engage_server'] . '.goacoustic.com'; + $this->_baseUrl = 'https://api-campaign-us-' . $config['engage_server'] . '.goacoustic.com/XMLAPI'; $this->_login($config['username'], $config['password']); } From e4d4e17713e3bbd0e0171279b2ad12a14098b5ab Mon Sep 17 00:00:00 2001 From: Ron Ferguson Date: Wed, 24 Jun 2020 10:23:17 -0500 Subject: [PATCH 3/3] Updated Silverpop branded domain URLs with Acoustic branded domain URLs. --- src/Silverpop/Transact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Silverpop/Transact.php b/src/Silverpop/Transact.php index d48ef03..5294a25 100644 --- a/src/Silverpop/Transact.php +++ b/src/Silverpop/Transact.php @@ -23,7 +23,7 @@ class Transact { * Sets $this->_baseUrl based on the engage server specified in config */ public function __construct($engage_server) { - $this->_baseUrl = 'http://transact' . $engage_server . '.silverpop.com/XTMail'; + $this->_baseUrl = 'https://transact' . $engage_server . '.goacoustic.com/XTMail'; } /**