Skip to content

Branded domain change #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Silverpop/EngagePod.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/XMLAPI';
$this->_login($config['username'], $config['password']);

}
Expand Down
2 changes: 1 addition & 1 deletion src/Silverpop/Transact.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

/**
Expand Down