17 lines
441 B
Bash
Executable File
17 lines
441 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
host=https://api.syui.ai
|
|
pass=`cat ~/.config/atr/api_card.json|jq -r .password`
|
|
if [ -z "$1" ];then
|
|
exit
|
|
fi
|
|
|
|
echo username
|
|
read
|
|
id=`curl -sL "$host/users?itemsPerPage=2000"|jq ".[]|select(.username == \"$1\")"|jq -r .id`
|
|
card=16
|
|
cp=0
|
|
s=super
|
|
skill=badge
|
|
curl -X POST -H "Content-Type: application/json" -d "{\"owner\":$id,\"card\":$card,\"status\":\"$s\",\"cp\":$cp,\"password\":\"$pass\",\"skill\":\"$skill\"}" -sL $host/cards
|