I’m seeing the Appfire Confluence CLI (ACLI) v12.0.0 consistently fail against Confluence Cloud with a 404 error. It was working fine the previous day.
Example command:
acli.sh confluence \ --server https://example.atlassian.net/ \ --user <email> --password <api-token> \ --action getPageList --space "LAB" --outputFormat 2
Error:
Client error: Unable to contact Confluence at url https://example.atlassian.net/wiki. Response code: 404.
From verbose logs, ACLI is calling:
https://example.atlassian.net/wiki/rest/api/latest/settings/systemInfo
But Confluence Cloud only responds to:
(curl
with the same credentials works fine.)
So it looks like ACLI is appending /latest
in the REST path, which Confluence Cloud no longer accepts ?.
Is anyone else running into this with Confluence Cloud + ACLI?