-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.py
114 lines (105 loc) · 2.15 KB
/
register.py
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
114
"""
Registering Slash Command
"""
import requests
from config import token # Token of Bot
# 542599372836438016
url = "https://discord.com/api/v8/applications/653534001742741552/guilds/653083797763522580/commands" # for guild
thanks = {
"name": "thanks",
"description": "감사를 표합니다.",
"options": [
{
"name": "human",
"description": "감사하신 분께 자신의 마음을 표현해보세요,",
"type": 6,
"required": True
}
]
}
cat = {
"name": "고양이",
"description": "귀여운 고양이 사진을 보냅니다냥~!",
"options": [
{
"name": "size",
"description": "사진의 사진 크기입니다.",
"type": 3,
"required": True,
"choices": [
{
"value": "small",
"name": "작은 사진이다냥.."
},
{
"value": "medium",
"name": "중간 사진이다냥.."
},
{
"value": "original",
"name": "크게 크게 크게!!! 다냥.."
}
]
}
]
}
test = {
"name": "이것",
"description": "테스트 is best",
"options": [
{
"name": "역할",
"description": "역할",
"type": 8
},
{
"name": "user",
"description": "유저",
"type": 6
},
{
"name": "channel",
"description": "채널",
"type": 7
},
{
"name": "boolean",
"description": "참/거짓",
"type": 5
},
{
"name": "integer",
"description": "정수",
"type": 4
}
]
}
iu = {
"name": "아이유",
"description": "❤️",
"options": [
{
"name": "type",
"description": "사진의 타입입니다.",
"type": 3,
"required": True,
"choices": [
{
"value": "gif",
"name": "GIF 이미지"
},
{
"value": "profile",
"name": "프로필 이미지"
}
]
}
]
}
json = iu
# For authorization, you can use either your bot token
headers = {
"Authorization": f"Bot {token}"
}
r = requests.post(url, headers=headers, json=json)
print(r.json())