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

Last change on this file since 26605 was 26605, checked in by mistic100, 10 years ago

add Persona authentification

File size: 2.8 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://cloud.google.com/console/project',
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://account.live.com/developers/applications/index',
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    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
58  ),
59  'Flickr' => array( 
60    'label'             => 'Flickr',
61    'provider_name'     => 'Flickr',
62    'new_app_link'      => null,
63    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
64  ),
65  'Steam' => array( 
66    'label'             => 'Steam',
67    'provider_name'     => 'Steam',
68    'new_app_link'      => null,
69    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
70  ),
71  'Wordpress' => array( 
72    'label'             => 'Wordpress',
73    'provider_name'     => 'Wordpress',
74    'new_app_link'      => null,
75    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
76  ),
77  'Persona' => array(
78    'label'             => 'Persona',
79    'provider_name'     => 'Persona',
80    'new_app_link'      => null,
81    'about_link'        => 'https://login.persona.org/about',
82    ),
83);
Note: See TracBrowser for help on using the repository browser.