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

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

finish updating guides, fix flow issues, update language file

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    'callback'          => true,
36    'new_app_link'      => 'http://www.tumblr.com/oauth/apps',
37  ),
38  'Twitter' => array( 
39    'label'             => 'Twitter',
40    'provider_name'     => 'Twitter',
41    'callback'          => true,
42    'new_app_link'      => 'https://dev.twitter.com/apps',
43  ),
44  'Live' => array( 
45    'label'             => 'Live',
46    'provider_name'     => 'Windows Live',
47    'require_client_id' => true,
48    'new_app_link'      => 'https://account.live.com/developers/applications/index',
49  ),
50  'Yahoo' => array( 
51    'label'             => 'Yahoo',
52    'provider_name'     => 'Yahoo!',
53    'new_app_link'      => 'https://developer.apps.yahoo.com/projects/',
54  ),
55  'OpenID' => array( 
56    'label'             => 'OpenID',
57    'provider_name'     => 'OpenID',
58    'new_app_link'      => null,
59    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
60  ),
61  'Flickr' => array( 
62    'label'             => 'Flickr',
63    'provider_name'     => 'Flickr',
64    'new_app_link'      => null,
65    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
66  ),
67  'Steam' => array( 
68    'label'             => 'Steam',
69    'provider_name'     => 'Steam',
70    'new_app_link'      => null,
71    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
72  ),
73  'Wordpress' => array( 
74    'label'             => 'Wordpress',
75    'provider_name'     => 'Wordpress',
76    'new_app_link'      => null,
77    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
78  ),
79  'Persona' => array(
80    'label'             => 'Persona',
81    'provider_name'     => 'Persona',
82    'new_app_link'      => null,
83    'about_link'        => 'https://login.persona.org/about',
84    ),
85);
Note: See TracBrowser for help on using the repository browser.