Hi, even though many of your API GET methods require various params, your GET method does not support it and feils silently. This causes unexpected behaviour.
function get($path) { return $this->request('get', $path); }
should be:
function get($path) { return $this->request('get', $path, $params = null); }
Hi, even though many of your API GET methods require various params, your GET method does not support it and feils silently. This causes unexpected behaviour.
function get($path) { return $this->request('get', $path); } should be: function get($path) { return $this->request('get', $path, $params = null); }