Reputation: 71
What is the best approach for authentication flow in PWA when its offline. I am using OIDC client js for online authentication flow.
Upvotes: 2
Views: 908
Reputation: 29263
The Authorization Server sits alongside your APIs so I would treat both the same:
Nothing about OIDC behaviour would change - you just need a design pattern for API access, which does not really depend on the technology you are using:
Upvotes: 2