Serhii Kuts

Results 14 comments of Serhii Kuts

I believe Github just don't have this data right now. so it says 202 "I got it, working now, pls try later" and handling is correct - schedule retry

`xcode-select --install` helped in my case. not sure if it is related

And what about scopes? investigate what scopes are assigned to token

from source code scopes are taken from consumer, and in terms of oauthtorize is an app. there is a test that checks that behavior https://github.com/ExpressGateway/express-gateway/blob/master/test/policies/oauth/oauth-policy.test.js#L98 it should be changed to...

After some investigation this scenario will be unstable due to session expiration. Instead client should send returnTo parameter with url if client_id is provided. then EG must validate if the...

and default redirect uri should be made configurable for both login and logout (`/` currently)

@XVincentX check out gateway.helper in tests startGatewayInstance is here and admin.helper for admin server

and config from code is not a problem gateway({config})

@kevinswiber this is why config is no just a parameter for gateway and for admin https://github.com/ExpressGateway/express-gateway/blob/master/lib/gateway/index.js#L63 @XVincentX here is this part implemented for admin https://github.com/ExpressGateway/express-gateway/blob/master/test/common/admin-helper.js it is exactly as you...

Also there are some complex but common scenarios 1) Start fake backend (with request handler controlled by test) Start gateway with config to proxy to this server 2) register policy...