본문으로 건너뛰기
사용자

Cernium/ACLGroup/api(비교)

r5 vs r6
......
1212
== 추가 ==
1313
{{{#!syntax python
1414
headers = {
15
'Authorization': 'Bearer API_TOKEN_HERE',
16
}
15
'Authorization': 'Bearer API_TOKEN_HERE'
16
}
1717
data = {
1818
'group': '경고-테스트',
1919
'username': 'Cernium',
2020
'note': 'api test',
2121
'expire': '20',
22
'mode': 'username',
23
}
22
'mode': 'username'
23
}
2424
response = requests.post('https://theseed.io/api/v0/aclgroup', headers=headers, data=data)
2525
}}}