I've just downloaded the API Client (PHP) from the API User Guide page, and have filled in the domain, username and API key.
But when I run it, just to see what it does, it displays this:
So it looks like something isn't quite configured right, and it can't find what it's looking for. But on the other hand, it's not really clear what is supposed to happen- is it actually supposed to do anything by default, or is it just a list of useful functions and it needs to be edited in order to work...?
But when I run it, just to see what it does, it displays this:
PHP Code:
Array(
[Status] => HTTP/1.1 404 Not Found
[Date] => Sat, 05 Aug 2017 10:02:54 GMT
[Server] => Apache
[X-Frame-Options] => SAMEORIGIN
[X-Requests-Limit] => 1000
[X-Requests-Remaining] => 999
[Vary] => Accept-Encoding,User-Agent
[Content-Encoding] => gzip
[Content-Length] => 86
[Content-Type] => application/json
)
Array
(
[error] => Array
(
[code] => 404
[phrase] => Not Found
[message] => Resource not found
)
)
Comment