-
Notifications
You must be signed in to change notification settings - Fork 2
/
opauth.conf.php
113 lines (110 loc) · 2.44 KB
/
opauth.conf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
/* This file is not meant for editing unless you're trying to add strategies
* that don't come prepackaged. Do not edit the other options for configuration
* purposes. */
$config = array(
'path' => preg_replace('/^' . preg_quote(site_url(), '/') . '/',
'', plugins_url()) . "/wp-opauth/auth/",
'callback_url' => preg_replace('/^' . preg_quote(site_url(), '/') . '/',
'', plugins_url()) . "/wp-opauth/auth/callback.php",
'callback_transport' => 'post',
'strategy_dir' => WPOPAUTH_PATH . DIRECTORY_SEPARATOR
. 'strategies' . DIRECTORY_SEPARATOR,
/* Generated automatically and stored in the DB */
'security_salt' => null,
/* Values defined as null will be configurable through the admin panel */
'Strategy' => array(
'GitHub' => array(
'client_id' => null,
'client_secret' => null
),
'Yahoojp' => array(
'client_id' => null,
'client_secret' => null
),
'Foursquare' => array(
'client_id' => null,
'client_secret' => null
),
'OpenID' => array(),
'Mixi' => array(
'client_id' => null,
'client_secret' => null
),
'Bitbucket' => array(
'key' => null,
'secret' => null
),
'Twitter' => array(
'key' => null,
'secret' => null
),
'Google' => array(
'client_id' => null,
'client_secret' => null
),
'SinaWeibo' => array(
'key' => null,
'secret' => null
),
'Disqus' => array(
'api_key' => null,
'api_secret' => null,
),
'Instagram' => array(
'client_id' => null,
'client_secret' => null
),
'Live' => array(
'client_id' => null,
'client_secret' => null
),
'Facebook' => array(
'app_id' => null,
'app_secret' => null,
'scope' => 'public_profile,email'
),
'Flickr' => array(
'key' => null,
'secret' => null
),
'Do' => array(
'client_id' => null,
'client_secret' => null
),
'VKontakte' => array(
'app_id' => null,
'app_secret' => null
),
'LinkedIn' => array(
'api_key' => null,
'secret_key' => null
),
'Behance' => array(
'client_id' => null,
'client_secret' => null
),
'Bitly' => array(
'client_id' => null,
'client_secret' => null
),
'Evernote' => array(
'client_id' => null,
'client_secret' => null,
'sandbox' => false,
),
'Tumblr' => array(
'consumer_key' => null,
'consumer_secret' => null
),
'Vimeo' => array(
'key' => null,
'secret' => null
),
'LoginCidadao' => array(
'client_id' => null,
'client_secret' => null,
'url_base' => null
),
),
);