Cloud Auth is fully compatible with Cloudflare Workers and can verify requests like this.
npm create feathersdev@latest server --platform cloudflare --app-id "<your-app-id>"
An authenticateRequest
function that validates an incoming web standard request can be implemented in src/authenticate.ts
like this:
It can then be used in a Cloudflare worker like this:
The full Cloudflare Worker example can be found here.