According to [https://apigility.org/documentation/auth/authentication-oauth2]
you are required to manually alter config/autoload/local.php by adding, the code below in order to add support for oauth2 Grant Type: Implicit
Is there a reason why this has been left out of the Apigility GUI... It would greatly make life easier if only there was a checkbox that one could check somewhere, and apigility automagically adds this line to the correct file as it already does with other similar settings.
'zf-oauth2' => array(
// ...
'allow_implicit' => true,
// ...
),
Originally posted by @somombo at zfcampus/zf-apigility-admin-ui#112