Adam Mcgrath
Adam Mcgrath
Hi @andrewscofield and all, happy to say that this feature is being actively worked on as part of the upcoming v2 I'll share an early version for testing as soon...
Hi @employee451 - yep, it's in the [vNext](https://github.com/auth0/nextjs-auth0/tree/vNext) branch. For the more adventurous, you can checkout that branch and build it from there (see https://github.com/auth0/nextjs-auth0#contributing) For everyone else, we'll be...
Hi @ShawnFumo The `auth0-forwarded-for` header is to prevent triggering the attack protection for the Resource Owner Password Flow, I've not heard of it being required for the Refresh Grant. I...
Hi @ShawnFumo - if your lambda is doing any sort of public caching then it's likely that it will be stripping the `set-cookie` header from the response. This is desirable,...
@ShawnFumo We've just worked around a [similar issue](https://github.com/auth0/nextjs-auth0/pull/664) for `withPageAuthRequired` (see the new https://auth0.github.io/nextjs-auth0/modules/helpers_get_server_side_props_wrapper.html) If you have a workaround and no one else is experiencing this issue, then I'm going...
Sure, thanks for the update @ShawnFumo > I'll try to do a PR pretty soon, modifying WithPageAuthRequired to be similar to GetServerSidePropsWrapper. `WithPageAuthRequired` already uses `GetServerSidePropsWrapper`. You'll want to make...
> That fix is easier than I was thinking it was going to be. I assumed you couldn't call setHeader after send (and so would have to proxy send) but...
Hi @ca-simone-chiorazzo - thanks for raising this You can share a session between individual services as follows: ```py Users = asyncify(Users) Connections = asyncify(Connections) session = aiohttp.ClientSession() users = Users(domain,...
This was fixed in https://github.com/mochajs/mocha/pull/2299 - but it's only in mocha 3.x
Hi @WolbachAuth0 - thanks for raising this > Expected behavior is that I should be able to grant any necessary scopes to my M2M connection in order to hit the...