fix: use get not post

This commit is contained in:
Derrick Hammer 2023-12-12 15:53:55 -05:00
parent 68f9c91c62
commit e24d352d4e
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ export async function getEntry(
const ret = await this.executeRequest({ const ret = await this.executeRequest({
...opts, ...opts,
endpointPath: opts.endpointGetEntry, endpointPath: opts.endpointGetEntry,
method: "post", method: "get",
data: { data: {
pk: base64urlEncode(publicKey), pk: base64urlEncode(publicKey),
}, },