Re: Token based authentication support added in Geode Develop

2019-10-07 Thread John Blum
got it On Mon, Oct 7, 2019 at 10:33 AM Joris Melchior wrote: > Yes, at the moment the we only support receiving a token provided in the > Authentication header field. We don't provide the standard endpoints for > token acquisition and refresh. > > On Fri, Oct 4, 2019 at 4:14 PM John Blum wrote:

Re: Token based authentication support added in Geode Develop

2019-10-07 Thread Joris Melchior
Yes, at the moment the we only support receiving a token provided in the Authentication header field. We don't provide the standard endpoints for token acquisition and refresh. On Fri, Oct 4, 2019 at 4:14 PM John Blum wrote: > So application developer's will need to know to code their applicatio

Re: Token based authentication support added in Geode Develop

2019-10-04 Thread John Blum
So application developer's will need to know to code their application client's to lookup the JWT token (from some store) and set HTTP request headers to send the token, or will this be handled automatically by a geode client? On Fri, Oct 4, 2019 at 11:37 AM Jinmei Liao wrote: > yes, correct, w

Re: Token based authentication support added in Geode Develop

2019-10-04 Thread Jinmei Liao
yes, correct, we are assuming the client will have the token available somehow and send in the token in the authentication header. We are not doing anything with actual token management. On Fri, Oct 4, 2019 at 11:34 AM Jens Deppe wrote: > So, to be clear, we're providing the ability to recogniz

Re: Token based authentication support added in Geode Develop

2019-10-04 Thread Jens Deppe
So, to be clear, we're providing the ability to recognize a HTTP authentication header containing 'Bearer ' and then handing that to the Security Manager to do with as it pleases? We're not doing anything with actual token management? (i.e. generating, revoking, etc.). --Jens On Fri, Oct 4, 2019

Token based authentication support added in Geode Develop

2019-10-04 Thread Jinmei Liao
Hi, all JWT token based authentication support is added to Geode develop branch. Currently only management v2 rest api can use this (we can add dev rest there too if requested). In order to turn on token based auth for management rest api, you will need to do these two things: 1. start your locato