-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnector.json
86 lines (85 loc) · 2.17 KB
/
connector.json
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
{
"name": "Slack",
"slug" : "slack",
"url": "https://slack.com/",
"auth_types" : {
"Public": {
"setup_help": "./samples/getting_started.md",
"requires_signing": true
}
},
"settings": [{
"key": "clientId",
"type" : "text",
"description": "Client Id",
"for_types": ["Public"],
"required": true
},{
"key": "clientSecret",
"type" : "text",
"description": "Client Secret",
"for_types": ["Public"],
"required": true
}],
"samples" : {
"getting_started" : "./samples/getting_started.js"
},
"endpoints" : {
"Api" : {
"sample" : "./samples/api.js",
"docs" : "https://api.slack.com/methods#api"
},
"Auth" : {
"sample" : "./samples/auth.js",
"docs" : "https://api.slack.com/methods#auth"
},
"Channels" : {
"sample" : "./samples/channel_list.js",
"docs" : "https://api.slack.com/methods#channels"
},
"Chat" : {
"sample" : "./samples/chat.js",
"docs" : "https://api.slack.com/methods#chat"
},
"Emoji" : {
"sample" : "./samples/emoji.js",
"docs" : "https://api.slack.com/methods#emoji"
},
"Files" : {
"sample" : "./samples/files.js",
"docs" : "https://api.slack.com/methods#files"
},
"Groups" : {
"sample" : "./samples/groups.js",
"docs" : "https://api.slack.com/methods#groups"
},
"Im" : {
"sample" : "./samples/im.js",
"docs" : "https://api.slack.com/methods#im"
},
"OAuth" : {
"sample" : "./samples/oauth.js",
"docs" : "https://api.slack.com/methods#oauth"
},
"Presence" : {
"sample" : "./samples/presence.js",
"docs" : "https://api.slack.com/methods#presence"
},
"Real Time Messaging" : {
"sample" : "./samples/rtm.js",
"docs" : "https://api.slack.com/methods#rtm"
},
"Search" : {
"sample" : "./samples/search.js",
"docs" : "https://api.slack.com/methods#search"
},
"Stars" : {
"sample" : "./samples/stars.js",
"docs" : "https://api.slack.com/methods#stars"
},
"Users" : {
"sample" : "./samples/users.js",
"docs" : "https://api.slack.com/methods#users"
}
}
}