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);


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM