summaryrefslogtreecommitdiffstats
path: root/includes/OAuth/Facebook.php
blob: 4b4c2bfe58e3222402ac711a4804c2c8823d191d (plain)
1
2
3
4
5
6
7
8
9
<?php

class Facebook extends Oauth {
	
	protected $_prefix = 'facebook';
	protected $_authorize_url = 'https://www.facebook.com/dialog/oauth';
	protected $_access_token_url = 'https://graph.facebook.com/oauth/access_token';
	
}