Now i`m adding array as string to body:
RequestBody body = new FormEncodingBuilder()
.add("profiles", "[122, 125, 336]")
.build();
But the server need array on post parameter. How can i add array instead of string? Is it posible with okhttp?