How to correctly use the introspection endpoint with identity server 4?

前端 未结 3 640
遇见更好的自我
遇见更好的自我 2021-02-01 05:23

I\'m using Identity Server 4 and I\'m trying to use the introspection endpoint, but just by the docs I\'m not getting it.

The docs just gives this example



        
3条回答
  •  悲&欢浪女
    2021-02-01 05:50

    @Jay's answer above helped me a lot. In my case I had forgotten to change content type to url-encoded as per the RFC 7662 i.e.

    r.Header.Add("Content-Type", "application/x-www-form-urlencoded")
    

提交回复
热议问题