From e24d352d4eb6fd5baf16698f11c876e79a3040fd Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 12 Dec 2023 15:53:55 -0500 Subject: [PATCH] fix: use get not post --- src/methods/registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/methods/registry.ts b/src/methods/registry.ts index aac8e3a..40d2df1 100644 --- a/src/methods/registry.ts +++ b/src/methods/registry.ts @@ -184,7 +184,7 @@ export async function getEntry( const ret = await this.executeRequest({ ...opts, endpointPath: opts.endpointGetEntry, - method: "post", + method: "get", data: { pk: base64urlEncode(publicKey), },