skip to Main Content

Mongodb – okhttp not sending header on post request

I am trying to send a simple post request to MongoDB using okhttp. Here is the code that I am working with: try { String jsonStr = om.writeValueAsString(postRequest); RequestBody body = RequestBody.create( jsonStr, MediaType.parse("application/json; charset=utf-8")); // also attempted with MediaType.parse("application/json")…

VIEW QUESTION
Back To Top
Search