From 155a0f97ff74dbee22ea9a37f1a5f83355817173 Mon Sep 17 00:00:00 2001 From: syui Date: Wed, 27 Nov 2024 10:54:18 +0000 Subject: [PATCH] =?UTF-8?q?curl=20=E3=82=92=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- curl.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/curl.md b/curl.md index 3d0b307..1a56001 100644 --- a/curl.md +++ b/curl.md @@ -17,6 +17,31 @@ $ curl -sL plc.syu.is/did:plc:6qyecktefllvenje24fcxnie $ curl -sL "syu.is/xrpc/com.atproto.repo.listRecords?repo=ai.syu.is&collection=app.bsky.feed.post&reverse=true&limit=1" ``` +## at-uri + +```sh +#!/bin/zsh + +function at-uri-search(){ + if [ -z "$1" ];then + # https://at.syu.is/at/did:plc:4hqjfn7m6n5hno3doamuhgef/ai.syui.game.user/syui + at_uri=at://did:plc:4hqjfn7m6n5hno3doamuhgef/ai.syui.game.user/syui + else + at_uri=$1 + fi + host=bsky.social + req=xrpc/com.atproto.repo.getRecord + url=https://${host}/${req} + + did=`echo $at_uri|cut -d / -f 3` + collection=`echo $at_uri|cut -d / -f 4` + rkey=`echo $at_uri|cut -d / -f 5` + curl -sL "$url?repo=$did&collection=$collection&rkey=$rkey"|jq . +} + +at-uri-search $1 +``` + ## invite code ```sh