Olá pessoal, bom dia.
-- Estou com um problema em um app pessoal com o Retrofit 2, estou tendo um problema em chamar um endpoint via @GET e passando um parâmetro via @Header.
A interface de callback:
@GET("api/igrejas/")
public Call<IgrejaModelCallback> listarTodasIgrejas(@Header("token") RequestBody token);
O trecho que a API:
RequestBody requestBody = RequestBody.create(MediaType.parse("text/plain"), token);
Call<IgrejaModelCallback> call = service.listarTodasIgrejas(requestBody);
call.enqueue(new Callback<IgrejaModelCallback>() {
@Override
public void onResponse(Call<IgrejaModelCallback> call, Response<IgrejaModelCallback> response) {
}
@Override
public void onFailure(Call<IgrejaModelCallback> call, Throwable t) {
}
});
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
0 comentários:
Postar um comentário