fusionauth的introspect端点如何使用?

How to use the introspect endpoint of fusionauth?

我正在尝试将 fusionauth 的内省端点与 REST 客户端一起使用。提出请求时, 它 returns 带有以下消息的代码 405:

代码 405 请求方式为服务器已知但已被禁用无法使用

这个端点是禁用的还是必须在 fusionauth 中配置它ui?

FusionAuth Introspect endpoint 应使用 POST 请求进行。如果您收到 405,我猜您使用的是 GET HTTP 方法。

供参考,这里是 Introspect RFC 7662 section 2.1

The protected resource calls the introspection endpoint using an HTTP POST [RFC7231] request with parameters sent as "application/x-www-form-urlencoded" data as defined in [W3C.REC-html5-20141028].

如果不是这样,你能post一个示例请求吗?