With firmware version 1.5.0.0A14, I was able to access webAPIs using curl statements with basic user auth as for instance
curl -u admin:PASSWORD -X POST http://%hostIP%/export/config
After the update to 1.5.0.0A25, with the default auth being Digest now, I'm unable to access the webAPIs via curl or Postman. I tried
curl --digest -u admin:PASSWORD -X POST http://%hostIP%/export/config
and see a 401-Authorization failed response. Same with Postman web client.
I could not find any documentation specifying the headers needed for REST calls with the changed authentication scheme.
Please help!
curl -u admin:PASSWORD -X POST http://%hostIP%/export/config
After the update to 1.5.0.0A25, with the default auth being Digest now, I'm unable to access the webAPIs via curl or Postman. I tried
curl --digest -u admin:PASSWORD -X POST http://%hostIP%/export/config
and see a 401-Authorization failed response. Same with Postman web client.
I could not find any documentation specifying the headers needed for REST calls with the changed authentication scheme.
Please help!
Comment