How to unfollow myself? #2233
-
So, I followed myself through the Bluesky API for fun. However, I don't have the original record URL returned by that request anymore. And when I do a call to {
"did": "did:plc:w342borqxtyo2pul67ec2pwt",
"handle": "deck.blue",
"displayName": "deck.blue",
"avatar": "https://cdn.bsky.app/img/avatar/plain/did:plc:w342borqxtyo2pul67ec2pwt/bafkreiec6yihxyfgua7myrxcfx75opofiu6l5wm4jzjrn3irlklynmagmy@jpeg",
"viewer": {
"muted": false,
"blockedBy": false,
"following": "at://did:plc:rre4nbfkekayht6hh5i5neqy/app.bsky.graph.follow/3kad6ednwad2f"
},
"labels": [],
"description": "3rd-party TweetDeck for Bluesky from 🇧🇷! Featuring columns, multi-account and scheduling!\n\nApp: deck.blue\nContact: hello@deck.blue\nDonate:\nhttps://patreon.com/deckblue\nhttps://
ko-fi.com/deck_blue",
"indexedAt": "2024-01-26T00:00:20.209Z"
},
{
"did": "did:plc:rre4nbfkekayht6hh5i5neqy",
"handle": "alexia.lol",
"displayName": "Alexia",
"avatar": "https://cdn.bsky.app/img/avatar/plain/did:plc:rre4nbfkekayht6hh5i5neqy/bafkreidlqnce4yg2x4xwjvlmeyhcfqndqeerirvk2pdp4vcjjw52o7lsim@jpeg",
"viewer": {
"muted": false,
"blockedBy": false
},
"labels": [],
"description": "She/Her",
"indexedAt": "2024-02-16T15:50:32.441Z"
}, How can I unfollow myself then? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We should be able to find that information my going directly to the repository data on your pds. It looks like your pds is lionsmane.us-east.host.bsky.network: curl -s https://plc.directory/did:plc:rre4nbfkekayht6hh5i5neqy | jq Now we can ask for your follows from lionsmane, and look for the one where you are the subject: curl -s 'https://lionsmane.us-east.host.bsky.network/xrpc/com.atproto.repo.listRecords?repo=did:plc:rre4nbfkekayht6hh5i5neqy&collection=app.bsky.graph.follow' | jq | grep '"subject": "did:plc:rre4nbfkekayht6hh5i5neqy"' -C5 Hope this helps! |
Beta Was this translation helpful? Give feedback.
We should be able to find that information my going directly to the repository data on your pds. It looks like your pds is lionsmane.us-east.host.bsky.network:
curl -s https://plc.directory/did:plc:rre4nbfkekayht6hh5i5neqy | jq
Now we can ask for your follows from lionsmane, and look for the one where you are the subject:
Hope this helps!