source: extensions/oAuth/include/providers_stats.inc.php @ 24142

Last change on this file since 24142 was 23808, checked in by mistic100, 11 years ago

add Steam provider (OpenID based)

File size: 2.3 KB
Line 
1<?php
2
3return array(
4  'Facebook' => array( 
5    'label'             => 'Facebook',
6    'provider_name'     => 'Facebook',
7    'require_client_id' => true,
8    'new_app_link'      => 'https://developers.facebook.com/apps',
9    'scope'             => 'email',
10  ),
11 
12  'Google' => array( 
13    'label'             => 'Google',
14    'provider_name'     => 'Google',
15    'callback'          => true,
16    'require_client_id' => true,
17    'new_app_link'      => 'https://code.google.com/apis/console',
18    'scope'             => 'https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email',
19  ),
20  'Instagram' => array(
21    'label'             => 'Instagram',
22    'provider_name'     => 'Instagram',
23    'callback'          => true,
24    'require_client_id' => true,
25    'new_app_link'      => 'http://instagram.com/developer/clients/manage',
26  ),
27  'LinkedIn' => array( 
28    'label'             => 'LinkedIn',
29    'provider_name'     => 'LinkedIn',
30    'new_app_link'      => 'https://www.linkedin.com/secure/developer',
31  ),
32  'Tumblr' => array(
33    'label'             => 'Tumblr',
34    'provider_name'     => 'Tumblr',
35    'new_app_link'      => 'http://www.tumblr.com/oauth/apps',
36  ),
37  'Twitter' => array( 
38    'label'             => 'Twitter',
39    'provider_name'     => 'Twitter',
40    'new_app_link'      => 'https://dev.twitter.com/apps',
41  ),
42  'Live' => array( 
43    'label'             => 'Live',
44    'provider_name'     => 'Windows Live',
45    'require_client_id' => true,
46    'new_app_link'      => 'https://manage.dev.live.com/ApplicationOverview.aspx',
47  ),
48  'Yahoo' => array( 
49    'label'             => 'Yahoo',
50    'provider_name'     => 'Yahoo!',
51    'new_app_link'      => 'https://developer.apps.yahoo.com/projects/',
52  ),
53  'OpenID' => array( 
54    'label'             => 'OpenID',
55    'provider_name'     => 'OpenID',
56    'new_app_link'      => null,
57  ),
58  'Flickr' => array( 
59    'label'             => 'Flickr',
60    'provider_name'     => 'Flickr',
61    'new_app_link'      => null,
62  ),
63  'Steam' => array( 
64    'label'             => 'Steam',
65    'provider_name'     => 'Steam',
66    'new_app_link'      => null,
67  ),
68  'Wordpress' => array( 
69    'label'             => 'Wordpress',
70    'provider_name'     => 'Wordpress',
71    'new_app_link'      => null,
72  ),
73);
Note: See TracBrowser for help on using the repository browser.