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

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

finish updating guides, fix flow issues, update language file

File size: 2.8 KB
RevLine 
[20293]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  ),
[20301]11 
[20293]12  'Google' => array( 
13    'label'             => 'Google',
14    'provider_name'     => 'Google',
15    'callback'          => true,
16    'require_client_id' => true,
[26555]17    'new_app_link'      => 'https://cloud.google.com/console/project',
[20293]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',
[20368]23    'callback'          => true,
24    'require_client_id' => true,
[20293]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',
[26608]35    'callback'          => true,
[20293]36    'new_app_link'      => 'http://www.tumblr.com/oauth/apps',
37  ),
38  'Twitter' => array( 
39    'label'             => 'Twitter',
40    'provider_name'     => 'Twitter',
[26608]41    'callback'          => true,
[20293]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,
[26555]48    'new_app_link'      => 'https://account.live.com/developers/applications/index',
[20293]49  ),
50  'Yahoo' => array( 
51    'label'             => 'Yahoo',
52    'provider_name'     => 'Yahoo!',
[20337]53    'new_app_link'      => 'https://developer.apps.yahoo.com/projects/',
[20293]54  ),
[20301]55  'OpenID' => array( 
56    'label'             => 'OpenID',
57    'provider_name'     => 'OpenID',
58    'new_app_link'      => null,
[26605]59    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
[20301]60  ),
61  'Flickr' => array( 
62    'label'             => 'Flickr',
63    'provider_name'     => 'Flickr',
64    'new_app_link'      => null,
[26605]65    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
[20301]66  ),
[23808]67  'Steam' => array( 
68    'label'             => 'Steam',
69    'provider_name'     => 'Steam',
70    'new_app_link'      => null,
[26605]71    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
[23808]72  ),
[20293]73  'Wordpress' => array( 
74    'label'             => 'Wordpress',
75    'provider_name'     => 'Wordpress',
76    'new_app_link'      => null,
[26605]77    'about_link'        => 'http://openid.net/get-an-openid/what-is-openid/',
[20293]78  ),
[26605]79  'Persona' => array(
80    'label'             => 'Persona',
81    'provider_name'     => 'Persona',
82    'new_app_link'      => null,
83    'about_link'        => 'https://login.persona.org/about',
84    ),
[20293]85);
Note: See TracBrowser for help on using the repository browser.