Re: [abacus] Securing REST endpoints using OAuth bearer access token
Sree Tummidi
Hi,
The access token that you are passing in the header serves as both a proof of authentication & authorization(scopes allowed) The validation of the request includes checking for the presence of the bearer token and then further checking for the validity of the bearer token. UAA also exposes an endpoint called check_token but its not a recommended path as this increases the traffic to the server. The barer token generated by UAA is a self validating JWT token which can be to checked for the issuer, signature, expiry, scope etc. Thanks, Sree Tummidi Sr. Product Manager Identity - Pivotal Cloud Foundry On Wed, Sep 30, 2015 at 2:58 PM, Saravanakumar A Srinivasan < sasrin(a)us.ibm.com> wrote: I am working on implementing (see Github commit at [1] for more details)
|
|