I’m working with a client to set up some push notification stuff in their app. After going back and forth about why my network requests are creating bad requests on his server, we’ve found out that it’s due to the network request changing this:
Content-Type: application/json
to this:
Content-Type: application/json; charset=UTF-8
It’s the UTF-8 part that is causing problems, if we curl without it then the request works. Is there a way for me to disable this charset being added in network.request?