Skip to content

Tag: tensorflow

How can I bring a HTML Image to the backend?

I have a middleware: which logs me (image): my API-Call in the backend looks like: it logs me: Answer First of all, you are doing a GET request. You can’t post data to a /GET endpoint. You need a /POST. Secondly, req.query is an object of key-value pairs of query parameters, which in your case is rightf…