-
Notifications
You must be signed in to change notification settings - Fork 16
/
auth_api.ini.php
54 lines (51 loc) · 1.35 KB
/
auth_api.ini.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
<?php
$auth_api = array(
// Basic or Digest
'plus' => array(
'use' => 0,
'displayname' => 'Normal',
),
// TypeKey
'typekey' => array(
'use' => 0,
'site_token' => '',
'need_email' => 0,
),
// Hatena
'hatena' => array(
'use' => 0,
'api_key' => '',
'sec_key' => '',
),
// JugemKey
'jugemkey' => array(
'use' => 0,
'api_key' => '',
'sec_key' => '',
),
// RemoteIP
'remoteip' => array(
'use' => 0,
'hidden' => 1,
),
// livedoor Auth
'livedoor' => array(
'use' => 0,
'app_key' => '',
'sec_key' => '',
),
// OpenID
'openid' => array(
'use' => 0,
'mixi' => array(
'my_id' => array(''), // 'userid1','userid2', ...
'community_id' => array(''), // 'community1', 'community2', ...
),
),
// QueryStringAuth
'querystringauth' => array(
'use' => 0,
'hidden' => 1,
),
);
?>