import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestParam;
@FeignClient(value = "authorization-server")
public interface OAuth2FeignClient {
@PostMapping("/oauth/token")
ResponseEntity<JwtToken> getToken(
@RequestParam("grant_type") String grantType , // 授权类型
@RequestParam("username") String username , // 用户名
@RequestParam("password") String password , // 用户的密码
@RequestParam("login_type") String loginType, // 登录的类型
@RequestHeader("Authorization") String basicToken // Basic Y29pbi1hcGk6Y29pbi1zZWNyZXQ= 由第三方客户端信息加密出现的值
) ;
}
OAuth2FeignClient
最新推荐文章于 2023-02-22 10:20:54 发布
该博客介绍了一个使用Spring Cloud OpenFeign Client来获取OAuth2授权令牌的接口。`OAuth2FeignClient`接口定义了一个`getToken`方法,通过指定的授权类型、用户名、密码、登录类型和基本授权头获取JWT(JSON Web Token)。
摘要由CSDN通过智能技术生成