How can I post following parameter in retrofit through post method ?
\"params\":{\"body\": { \"learning_objective_uuids\": [ \"ED4FE2BB2008FDA9C81
I've found a new workaround:
you can send it as a String:
@POST("CollectionPoints") @FormUrlEncoded Call postSomething(@Field("ids")String ids);
and send pass it like this:
Call call = service.postSomething("0","0", Arrays.toString(new int[]{53551, 53554}));
Best Regards!