If I'm doing authentication with firebase as the p...
# server
c
If I'm doing authentication with firebase as the provider is there a way to do it using ktor's authentication feature? How would one go about setting it up?
l
client authenticates in the browser, you send the jwt to your server, then you can set up a validator on the server: https://ktor.io/servers/features/authentication/jwt.html
so your implementation would involve a call to the firebase api to validate the jwt on the server