FooSoft / anki-connect

Anki plugin to expose a remote API for creating flash cards.
https://foosoft.net/projects/anki-connect/
Other
1.92k stars 218 forks source link

When using node-fetch the response is not json #404

Open Vilhelm-Ian opened 11 months ago

Vilhelm-Ian commented 11 months ago

`const url = "http://127.0.0.1:8765";

async function invoke(action, version, params) { try { let res = await fetch(url, { Method: "POST", Body: JSON.stringify({ action, version, params, }), }); let data = await res.text(); return data; } catch (e) { console.log(e, "error"); } }

invoke("deckNames", 6, {}).then((data) => console.log(data, "hello")); `

The output is AnkiConnect v.6 hello when I try res.json() it crashes and says it's not a json