使用Spring REST API的基本改装授权

时间:2019-07-20 12:21:15

标签: android spring authentication retrofit

我正在Android应用程序中使用Retrofit实现基本身份验证。我正在学习本教程:https://futurestud.io/tutorials/android-basic-authentication-with-retrofit

我不确定如何实现此方法:

public interface LoginService {  
    @POST("/login")
    Call<User> basicLogin();
}

此方法在我的REST API中应如何显示? 这是我当前的REST API:

public interface UserRepository extends CrudRepository<User, String>{
        public Iterable<User> findAll();
    @SuppressWarnings("unchecked")
    public User save (User user);
}

我是否应该编写另一种基于某些参数返回一个User的方法?

0 个答案:

没有答案