Kim Maida

Results 13 comments of Kim Maida

I've implemented this solution as written above by @gallaouim, but it didn't work (custom post is created successfully, but no ACF data is available in it after creation). I have...

Need to verify the solution with workflows.

Unable to reproduce; please pull latest and see if this is still an issue. It should not run in the constructor, but in the ngOnInit.

Are you still having issues with this @ragavanrajan and @NijsTom?

I was able to fix this by changing `audience` to `aud`, like so: ``` const jwtCheck = jwt({ secret: ..., aud: config.AUTH0_API_AUDIENCE, issuer: `https://${config.AUTH0_DOMAIN}/`, algorithms: ['RS256'] }); ``` Another user...

This does seem to be working with `audience` now. `aud` does not actually check the audience, so it would always pass. However, I've now used `audience` in several repos with...

@carnag3kid7 Correct, changing it to `aud` is not an acceptable fix. I have not run into this issue anymore recently. Are you experiencing this with a fresh `npm install`?

We are tracking this issue currently: https://github.com/ionic-team/ionic-cli/issues/2664 In the hopes that Ionic will support more straightforward PWA deployments in the future. When this issue is resolved, we will look into...

You've installed `cordova-plugin-customurlscheme` and set variables using your package ID and Auth0 domain accordingly? Also, your config in the AuthService is: ``` callbackURL: location.href ``` BTW: this Quick Start example...