My authentication use-case is fairly simple. I use my API only myself in the frontend of my ZF application, when a user is logged in. So any of the provided Authentication Adapters seem overkill to me. I don’t need the API to ask for credentials at all.
I want to use the identity provided in the browser’s session. If the user is logged in, the API should be accessible, otherwise not.
So I guess what I have to to, is to somehow inject the application’s auth adapter or identity into the Apigility API module.
My app uses ZfcUser and ZfcRbac to manage roles and identities.