-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
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.
rohan2388, chengyu-luna and Amenjsajs
Metadata
Metadata
Assignees
Labels
No labels