I’ve been experimenting with hosting a React application on pages. Rather than have the user login on a form on that site I’d like to be able to hit an authentication service allows the user to log in and then have that service pass a token to the pages site. The token could then be used to make API requests. Is this possible? Is it possible to combine Pages with Workers to receive a request and then inject the token to be passed to the client?
Thanks!