You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I think sending GET request to an account URL is not allowed by RFC8555, only directory and newNonce can get GET requests. The account URL should receive POST or POST-as-GET requests.
POST request to a new account is actually processed correctly with account url returned in Location and status code either 200 or 201. But then the client sends GET request to the account URL, which fails because it should not.
The text was updated successfully, but these errors were encountered:
Hi, I think sending GET request to an account URL is not allowed by RFC8555, only directory and newNonce can get GET requests. The account URL should receive POST or POST-as-GET requests.
I have this debug message:
[2022-07-10T09:45:58.194442+00:00] acme.debug: Request for https://pki.techcorpapps.com/acme/new-account via POST has been processed with status 405: {"type":"urn:ietf:params:acme:error:malformed","detail":"method not allowed"} {"url":"https://pki.techcorpapps.com/acme/new-account","status":405,"body":"{\"type\":\"urn:ietf:params:acme:error:malformed\",\"detail\":\"method not allowed"}"}
Kelunik\Acme\AcmeException: Unable to find account with given private key in phar:///home/alpine/acme-client.phar/vendor/kelunik/acme/src/AcmeClient.php:268
POST request to a new account is actually processed correctly with account url returned in Location and status code either 200 or 201. But then the client sends GET request to the account URL, which fails because it should not.
The text was updated successfully, but these errors were encountered: