Possible way to make OkHTTP post request without a request body in okhttp library ?
This worked for me:
RequestBody body = RequestBody.create(null, new byte[]{});