1. 程式人生 > >使用Kong的oauth2.0,請求重定向url,返回“no route and no API found with those values”

使用Kong的oauth2.0,請求重定向url,返回“no route and no API found with those values”

官方提供的endpoints有兩個:/oauth2/authorize 以及 /oauth2/token。(詳情請看:https://docs.konghq.com/hub/kong-inc/oauth2/)

注意事項有以下3點:

1、如果api添加了“uris”,比如“/test",那麼訪問的url為:https://www.xxx.com/test/oauth2/authorize;

2、如果api添加了”host",比如“test.com",那麼訪問時需要在header裡面新增上:“Host: test.com";

3、因為這裡需要使用到POST方式,所以新增api的時候,記得把methods的POST項勾上。