I don't know javascript but I think you'll have to add something like: headers: new Headers({'conten
I don't know javascript but I think you'll have to add something like:
headers: new Headers({'content-type': 'image/png'}),
after method: 'PUT'
reference: https://stackoverflow.com/questions/38156239/how-to-set-the-content-type-of-request-header-when-using-fetch-api
headers: new Headers({'content-type': 'image/png'}),
after method: 'PUT'
reference: https://stackoverflow.com/questions/38156239/how-to-set-the-content-type-of-request-header-when-using-fetch-api
Stack Overflow
I am using npm 'isomorphic-fetch' to send requests. The problem I am experiencing is I am unable to set the content-type of the request header.
I set a content type of application/json , however the
I set a content type of application/json , however the

