如何将sharedpref添加到Retrofit界面中

时间:2018-06-06 23:43:40

标签: java android retrofit2

我需要通过Retrofit获取以下网址,mensajes.php?cel=NUMBER,如何在 sharedpref 中添加 NUMBER ,在这种情况下将是{ {1}}

我的Retrofit界面代码如下:

user.getCel ()

我是诺布,请你帮忙。

1 个答案:

答案 0 :(得分:0)

您需要将param作为查询参数传递:

public interface ApiInterface {

    @GET("mensajes.php")
    Call<List<Message>> getInbox(@Query("cel") String one);
}

然后在使用时传递共享的pref:

Call<List<Message>> call = api.getInbox(sharedPref.getString("PHONE_KEY"));