Retrofit 2.0-beta-2 is adding literal quotes to MultiPart values
Went to upgrade to Retrofit 2.0 and running into this weird problem. I have a method to log a user in public interface ApiInterface { @Multipart @POST("user/login/") Call<SessionToken> userLogin(@Part("username") String username, @Part("password") String password); } When I look at the key value POST params on the server side they print like this username : "brian" password : "password" The same method using retrofit 1.9 the K:V pairs look like username : brian password : password It's adding literal quotes to the POST variables If I use any other rest client the variables print like the