cyriondb
cyriondb
Hello @Rooyca, Thank you for taking the time to look at that! In your example, how do you retrieve the result of the first query (and pass it on to...
Hello @Rooyca, Sorry for the late reply! And thank you for your answer! I wanted to test the new functionnality, but now nothing works anymore :( I suspect this is...
It's working with your link and GET requests I guess. My query that is not currently working is a POST one: ```req url: https://backoffice.website.net/api/login_check method: POST body: {"username": "[email protected]", "password":...
I tried reinstalling the plugin, but it didn't change anything.. What's strange is that it works fine with curl: ```bash curl -k -X POST -H "Content-Type: application/json" "https://backoffice.website.net/api/login_check" -d "{\"username\":\"[email protected]\",\"password\":\"XXX\"}"...
Your request works fine. On my request, with `headers: {"Content-Type: application/json"}` I get: `Error: Request failed, status 400`. Without the header, I get `Error: Request failed, status 404` (which is...
After debugging, we found that the body sent is not a JSON string. We corrected this by modifying this part of the plugin: ``` const response = await (0, import_obsidian3.requestUrl)({...
Thank you! I may have another suggestion :) I am trying to have a different request for each page with an API call that retrieves different content based on a...
Done (https://github.com/Rooyca/obsidian-api-request/issues/60). Thank you very much!