You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AbstractRestRequest::sendData() method is building the URL for GET requests like so: $requestUrl = $this->getEndpoint() . '?' . http_build_query($data);
But this URL is used nowhere after this. Instead, the request is using $this->getEndpoint() as the URL.
The
AbstractRestRequest::sendData()
method is building the URL for GET requests like so:$requestUrl = $this->getEndpoint() . '?' . http_build_query($data);
But this URL is used nowhere after this. Instead, the request is using
$this->getEndpoint()
as the URL.This:
Should be replaced with:
The text was updated successfully, but these errors were encountered: