獲取登入成功的token
阿新 • • 發佈:2019-01-04
專案中是要用到賬號登入的,登入成功後,很多網路請求都需要帶上token資訊,所以需要在登入成功是獲取Token資訊
//登入介面
@POST(“user-login”)
Call getLOginBean(@Body RequestBody body);
apiService.getLOginBean(body).enqueue(new Callback() {
@Override public void onResponse(Call<LoginBean> call, Response<LoginBean> response) { LoginBean loginBean = response.body(); if (response.code() == 200) { //獲取token mToken = response.headers().get("Token"); Log.i("msg", mToken); //進入登入狀態 saveInfo(loginBean); SharedPreferences sp_login = getSharedPreferences(SPConstant.LOGINSTATE, MODE_PRIVATE); //儲存本地,下次進入和服務端的Token對比,相同的就直接進入