我需要通过Retrofit获取以下网址,mensajes.php?cel=NUMBER
,如何在 sharedpref 中添加 NUMBER ,在这种情况下将是{ {1}}
我的Retrofit界面代码如下:
user.getCel ()
我是诺布,请你帮忙。
答案 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"));