Hey there,
I'm trying to implement your library and running into this error:
throw new APIError($oauthException->lastResponse);
resulting from my experimental code:
$client = new \UserVoice\Client($this->subdomainName,$this->apiKey,$this->apiSecret);
$suggestions = $client->get_collection("/api/v1/suggestions");
foreach ($suggestions as $suggestion) {
print("${suggestion['title']}: ${suggestion['url']}\n");
}
I'm sure that I gave a valid subdomain as well as api key and secret. As it didn't throw an unauthorized exception I'm wondering what could be the cause.
Hey there, I'm trying to implement your library and running into this error:
resulting from my experimental code:
I'm sure that I gave a valid subdomain as well as api key and secret. As it didn't throw an unauthorized exception I'm wondering what could be the cause.
Any ideas?