我正在Retrofit 1.9
版本中编写我的第一个代码。我试图关注几个博客,但无法理解非常基本的问题。到目前为止,我已使用Model
,jsonschema2pojo
类创建了RestAdapter
课程。
这是我的模特课:
@Generated("org.jsonschema2pojo")
public class GmailOauth {
@Expose
private String createdAt;
@Expose
private String objectId;
@Expose
private String sessionToken;
@Expose
private String username;
..... Getter and Setter methods...
我使用model
创建了上述Jsonschema2pojo
课程。所以,我的回答JSON是可以理解的。
public class RestApiAdapter {
public static final String BASE_URL = "http://testingserver.com:8081";
public RestAdapter providesRestAdapter(Gson gson) {
return new RestAdapter.Builder()
.setEndpoint(BASE_URL)
.build();
}
}
interface GmailSignInAPI {
@POST("/signWithGmail")
void GmailOauthLogin(@Body GmailOauth user, Callback<GmailOauth> cb);
}
现在,我很困惑如何编写Retrofit
客户端以有效的方式传递following
form-data post参数?
accessToken (String value)
userID (String value)
如果我想在post请求中传递自定义对象并将请求的响应保存在同一对象中,该怎么办?这是一个很好的方法吗?
答案 0 :(得分:10)
我认为对于Retrofit的api部分我会把
@FormUrlEncoded
@Post("/path/to/whatever")
void authenticateWithSomeCredentials(@Field("username") String userName, Callback<Object> reponse
然后我会这样称呼它:
public void authenticateWithSomeCredentials(username), new Callback<Object>() {
@Override
public void success(Object object, Response response) {
// Do something
}
@Override
public void failure(RetrofitError error) {
// Do something
}
}
要将令牌添加到每个调用,您可以添加拦截器:
public class YourAuthInterceptor implements interceptor {
@Override
public Response intercept(Chain chain) throws IOException {
request = chain.request().newBuilder()
.addHeader("token"), tokenVariable)
.build();
return chain.proceed(request);
}
}
this will add a "token" to every call you make with retrofit
so then when you build your api you build it like this
YourApi api = new RestAdapter.Builder()
.setEndpoint(url)
.setRequestInterceptor(new YourAuthInterceptor())
.build()
.create(YourApi.class);
我希望这很有意义,因为我很快就打字了。如果您有任何疑问,请告诉我。
答案 1 :(得分:2)
你可以这样做:
@FormUrlEncoded
@POST("/postTosServer")
void postToServer(@Field("accessToken") String your_token, @Field("userID") String userid);