Open ghost opened 10 years ago
The following is my config.php:
<?php
return array(
/* |-------------------------------------------------------------------------- | oAuth Config |-------------------------------------------------------------------------- */ /** * Storage */ 'storage' => 'Session', /** * Consumers */ 'consumers' => array( /** * Facebook */ 'Facebook' => array( 'client_id' => Config::get('facebook.client_id'), 'client_secret' => Config::get('facebook.client_secret'), 'scope' => array('email', 'user_location'), ), )
);
However, once I get redirected to the dialog, I am not prompted to allow the usage of my location. It's as if the scopes I specify were being ignored and thus I cannot request any other permissions. What's wrong?
The following is my config.php:
<?php
return array(
);
However, once I get redirected to the dialog, I am not prompted to allow the usage of my location. It's as if the scopes I specify were being ignored and thus I cannot request any other permissions. What's wrong?