Subversion Repositories SmartDukaan

Rev

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

Rev 10582 Rev 11011
Line 38... Line 38...
38
			case PYRO_PRODUCTIION:
38
			case PYRO_PRODUCTIION:
39
				return 'https://bloo.ie/oauth/access_token';
39
				return 'https://bloo.ie/oauth/access_token';
40
 
40
 
41
			default:
41
			default:
42
		}
42
		}
43
 
43
	}
44
	public function get_user_info(OAuth2_Token_Access $token)
44
	function get_user_info(OAuth2_Token_Access $token)
45
	{
45
	{
46
		$url = 'https://graph.facebook.com/me?'.http_build_query(array(
46
		$url = 'https://graph.facebook.com/me?'.http_build_query(array(
47
			'access_token' => $token->access_token,
47
			'access_token' => $token->access_token,
48
		));
48
		));
49
 
49