This commit is contained in:
2023-10-20 23:31:16 +09:00
parent 430b5977d8
commit ab597d5a7b
24 changed files with 1614 additions and 1 deletions

6
scpt/token.zsh Executable file
View File

@ -0,0 +1,6 @@
function token() {
url=https://$host/xrpc/com.atproto.server.createSession
j=`curl -sL -X POST -H "Content-Type: application/json" -d "{\"identifier\":\"$handle\",\"password\":\"$pass\"}" $url`
echo $j
echo $j >! $cfg.t
}