Subversion Repositories SmartDukaan

Rev

Rev 10582 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10582 Rev 15871
Line 9... Line 9...
9
 * @license    http://philsturgeon.co.uk/code/dbad-license
9
 * @license    http://philsturgeon.co.uk/code/dbad-license
10
 */
10
 */
11
 
11
 
12
class OAuth2_Provider_Facebook extends OAuth2_Provider
12
class OAuth2_Provider_Facebook extends OAuth2_Provider
13
{
13
{
14
	protected $scope = array('offline_access', 'email', 'read_stream');
14
	protected $scope = array('email');
15
 
15
 
16
	public function url_authorize()
16
	public function url_authorize()
17
	{
17
	{
18
		return 'https://www.facebook.com/dialog/oauth';
18
		return 'https://www.facebook.com/dialog/oauth';
19
	}
19
	}