zoukankan      html  css  js  c++  java
  • feign请求 oauth2授权服务器token接口‘/oauth/token’

    • 授权服务器目标接口
     @RequestMapping(
            value = {"/oauth/token"},
            method = {RequestMethod.POST}
        )
        public ResponseEntity<OAuth2AccessToken> postAccessToken(Principal principal, @RequestParam Map<String, String> parameters){
    ...
    }
    
    • 自定义按照通常的方式编写feign client
        /**
         * 获取jwt 对象
         *
         * @param parameters
         * @return
         * @throws HttpRequestMethodNotSupportedException
         */
        @RequestMapping( value = "/oauth/token",method = RequestMethod.POST)
        ResponseEntity<OAuth2AccessToken> postAccessToken(@RequestBody MultiValueMap<String, String> parameters);
    
    
    • 此时会出现反序列化错误
      Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Invalid JSON input: Cannot deserialize instance of java.util.ArrayList<java.lang.Object>out of VALUE_STRING token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance ofjava.util.ArrayList<java.lang.Object> out of VALUE_STRING token at [Source: (PushbackInputStream); line: 2, column: 17] (through reference chain: org.springframework.util.LinkedMultiValueMap["username"])]

    • feign client接口需改为使用 String类型接收,测试发现Object也可以接收;

     /**
         * 获取jwt 对象
         *
         * @param parameters
         * @return
         * @throws HttpRequestMethodNotSupportedException
         */
        @RequestMapping( value = "/oauth/token",method = RequestMethod.POST)
        String postAccessToken(@RequestBody MultiValueMap<String, String> parameters);
    
  • 相关阅读:
    Swagger介绍
    mybatis-plus常用操作
    [比赛][蓝桥杯] 第十一届蓝桥杯第二次省赛C++A组
    [题目][蓝桥杯PREV-14] 高僧斗法
    [题目][蓝桥杯PREV] 大合集
    [题目][APIO2009][蓝桥杯ALGO-44] 采油区域
    [题目][蓝桥杯ALGO] 大合集
    [题目][NOIP2001][蓝桥杯ALGO-25] Car 的旅行路线
    [题目][蓝桥杯ALGO-22] 数的划分
    [知识点] 1.5.3 运算符重载
  • 原文地址:https://www.cnblogs.com/jinit/p/14828597.html
Copyright © 2011-2022 走看看