By: Mohamad Taheri user 13 Jul 2016 at 8:43 a.m. CDT

3 Responses
Mohamad Taheri gravatar
What should i have to send to UMA introspection_endpoint to check RPT status. I have RPT Authorized but all the time this is introspection_endpoint response: { "active": false, "exp": null, "iat": null, "nbf": null, "permissions": null, "client_id": null, "sub": null, "aud": null, "iss": null, "jti": null }

By Aliaksandr Samuseu staff 13 Jul 2016 at 8:55 a.m. CDT

Aliaksandr Samuseu gravatar
Hi, Mohamad. Were you following [these guidelines](https://gluu.org/docs/api/uma-rpt-status/) while doing that?

By Yuriy Zabrovarnyy staff 13 Jul 2016 at 12:31 p.m. CDT

Yuriy Zabrovarnyy gravatar
Introspection endpoint is protected by PAT token. Java interface ``` https://github.com/GluuFederation/oxAuth/blob/master/Client/src/main/java/org/xdi/oxauth/client/uma/RptStatusService.java#L26-26 ``` You can take git repo and check usages of this interface if you need concrete example. Thanks, Yuriy Z

By Mohamad Taheri user 14 Jul 2016 at 5:10 a.m. CDT

Mohamad Taheri gravatar
Thanks