본문으로 건너뛰기
사용자

Cernium/ACLGroup/api(비교)

r9 vs r10
......
1818
'Authorization': 'Bearer API_TOKEN_HERE'
1919
}
2020
}}}
21
{{{#!folding 출력
21
22
== 목록 ==
2223
{{{#!syntax python
24
data = {
25
'group': '인증된 사용자'
26
}
27
28
response = requests.get('https://theseed.io/api/v0/aclgroup?from=12029', headers=headers, data=data) #?from=12029는 제거해도 됨
29
print(response.text)
30
}}}
31
32
=== 목록/출력 ===
33
{{{#!syntax python
2334
{
2435
"groups": [
2536
"차단된 사용자",
......
4960
}
5061
... (생략)
5162
}}}
52
}}}
5363
54
== 목록 ==
55
{{{#!syntax python
56
data = {
57
'group': '인증된 사용자'
58
}
59
60
response = requests.get('https://theseed.io/api/v0/aclgroup?from=12029', headers=headers, data=data) #?from=12029는 제거해도 됨
61
print(response.text)
62
}}}
63
6464
== 추가 ==
6565
{{{#!syntax python
6666
data = {
......