I'm using apigility under the zf2 framework to build my Rest server
So, we are rebuilding the rest server and our client app is calling the /oauth with extra parameters and I'm not sure how to get those parameters.
By default, /oauth will require client_id, client_secret,
and grant_type
. Now, my client app also is passing in client_language
and client_platform
. How do I intercept these variables?
I'm thinking of building on bootstrap, but I couldn't get it working...
Thanks!