Please refer to #43
PrivateApi.php, Line 32;
$args = array(
'base_uri' => sprintf(
"https://%s/admin/api/%s",
$this->myshopify_domain,
$this->getApiVersion()
),
'headers' => array(
'Authorization' => $this->createBasicAuthHeader(
$this->api_key,
$this->password
)
)
);
Fix:
$args = array(
'base_uri' => sprintf(
"https://%s/admin/api/%s/",
$this->myshopify_domain,
$this->getApiVersion()
),
'headers' => array(
'Authorization' => $this->createBasicAuthHeader(
$this->api_key,
$this->password
)
)
);
Only add a slash on line 32.
Please refer to #43
Fix:
Only add a slash on line 32.