

{"id":21206,"date":"2024-07-18T05:16:55","date_gmt":"2024-07-18T10:16:55","guid":{"rendered":"https:\/\/rud.is\/b\/?p=21206"},"modified":"2024-07-18T05:16:55","modified_gmt":"2024-07-18T10:16:55","slug":"resolve-bluesky-atproto-handles-to-didplc","status":"publish","type":"post","link":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/","title":{"rendered":"Resolve Bluesky\/ATproto Handles To did:plc"},"content":{"rendered":"<p>Short post just to get the internets to index that I posted a repo with a small Bash script I&#8217;ve been using to resolve Bluesky\/ATproto handles (like <code>hrbrmstr.dev<\/code>) to <code>did:plc<\/code> identifiers. Not sure why I did do this ages ago tbh.<\/p>\n<p>Code is <a href=\"https:\/\/codeberg.org\/hrbrmstr\/besolve\">here<\/a> but it&#8217;s small enough to include inline as well:<\/p>\n<pre><code class=\"language-bash\">#!\/usr\/bin\/env bash\n\nset -euo pipefail\n\n# Function to resolve Bluesky handle to DID:PLC\nresolve_bluesky_handle() {\n  local handle=\"${1:-}\"\n\n  # Remove leading '@' if present\n  handle=$(echo \"${handle}\" | sed -e 's\/^@\/\/')\n\n  # Check if curl is installed\n  if ! command -v curl &amp;&gt;\/dev\/null; then\n    echo \"Error: curl is not installed.\"\n    return 1\n  fi\n\n  # Check if jq is installed\n  if ! command -v jq &amp;&gt;\/dev\/null; then\n    echo \"Error: jq is not installed.\"\n    return 1\n  fi\n\n  api_url=\"https:\/\/bsky.social\/xrpc\/com.atproto.identity.resolveHandle\"\n  response=$(curl --silent --header \"Accept: application\/json\" \"${api_url}?handle=${handle}\")\n\n  # Check if the curl command was successful\n  if [[ $? -ne 0 ]]; then\n    echo \"Error: Failed to fetch data from Bluesky API.\"\n    return 1\n  fi\n\n  # Extract the DID from the response\n  did=$(echo \"${response}\" | jq -r '.did')\n\n  # Check if jq command was successful\n  if [[ $? -ne 0 ]]; then\n    echo \"Error: Failed to parse JSON response.\"\n    return 1\n  fi\n\n  # Check if DID is empty\n  if [[ -z \"${did}\" ]]; then\n    echo \"Error: DID not found in the response.\"\n    return 1\n  fi\n\n  echo \"${did}\"\n}\n\n# Check if exactly one argument is provided\nif [[ $# -ne 1 ]]; then\n  echo \"Usage: $0 &lt;handle&gt;\"\n  exit 1\nfi\n\nresolve_bluesky_handle \"${1}\"\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Short post just to get the internets to index that I posted a repo with a small Bash script I&#8217;ve been using to resolve Bluesky\/ATproto handles (like hrbrmstr.dev) to did:plc identifiers. Not sure why I did do this ages ago tbh. Code is here but it&#8217;s small enough to include inline as well: #!\/usr\/bin\/env bash [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"activitypub_content_warning":"","activitypub_content_visibility":"","activitypub_max_image_attachments":3,"activitypub_interaction_policy_quote":"anyone","activitypub_status":"federate","footnotes":""},"categories":[887,883],"tags":[],"class_list":["post-21206","post","type-post","status-publish","format-standard","hentry","category-bash","category-bluesky"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Resolve Bluesky\/ATproto Handles To did:plc - rud.is<\/title>\n<meta name=\"description\" content=\"A concise Bash script for resolving Bluesky\/ATproto handles to DID:PLC identifiers, simplifying user identification in the decentralized social network ecosystem.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Resolve Bluesky\/ATproto Handles To did:plc - rud.is\" \/>\n<meta property=\"og:description\" content=\"A concise Bash script for resolving Bluesky\/ATproto handles to DID:PLC identifiers, simplifying user identification in the decentralized social network ecosystem.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\" \/>\n<meta property=\"og:site_name\" content=\"rud.is\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-18T10:16:55+00:00\" \/>\n<meta name=\"author\" content=\"hrbrmstr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"hrbrmstr\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\"},\"author\":{\"name\":\"hrbrmstr\",\"@id\":\"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886\"},\"headline\":\"Resolve Bluesky\/ATproto Handles To did:plc\",\"datePublished\":\"2024-07-18T10:16:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\"},\"wordCount\":61,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886\"},\"articleSection\":[\"bash\",\"bluesky\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\",\"url\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\",\"name\":\"Resolve Bluesky\/ATproto Handles To did:plc - rud.is\",\"isPartOf\":{\"@id\":\"https:\/\/rud.is\/b\/#website\"},\"datePublished\":\"2024-07-18T10:16:55+00:00\",\"description\":\"A concise Bash script for resolving Bluesky\/ATproto handles to DID:PLC identifiers, simplifying user identification in the decentralized social network ecosystem.\",\"breadcrumb\":{\"@id\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rud.is\/b\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resolve Bluesky\/ATproto Handles To did:plc\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rud.is\/b\/#website\",\"url\":\"https:\/\/rud.is\/b\/\",\"name\":\"rud.is\",\"description\":\"&quot;In God we trust. All others must bring data&quot;\",\"publisher\":{\"@id\":\"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rud.is\/b\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886\",\"name\":\"hrbrmstr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1\",\"url\":\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1\",\"width\":460,\"height\":460,\"caption\":\"hrbrmstr\"},\"logo\":{\"@id\":\"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1\"},\"description\":\"Don't look at me\u2026I do what he does \u2014 just slower. #rstats avuncular \u2022 ?Resistance Fighter \u2022 Cook \u2022 Christian \u2022 [Master] Chef des Donn\u00e9es de S\u00e9curit\u00e9 @ @rapid7\",\"sameAs\":[\"http:\/\/rud.is\"],\"url\":\"https:\/\/rud.is\/b\/author\/hrbrmstr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Resolve Bluesky\/ATproto Handles To did:plc - rud.is","description":"A concise Bash script for resolving Bluesky\/ATproto handles to DID:PLC identifiers, simplifying user identification in the decentralized social network ecosystem.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/","og_locale":"en_US","og_type":"article","og_title":"Resolve Bluesky\/ATproto Handles To did:plc - rud.is","og_description":"A concise Bash script for resolving Bluesky\/ATproto handles to DID:PLC identifiers, simplifying user identification in the decentralized social network ecosystem.","og_url":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/","og_site_name":"rud.is","article_published_time":"2024-07-18T10:16:55+00:00","author":"hrbrmstr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"hrbrmstr","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#article","isPartOf":{"@id":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/"},"author":{"name":"hrbrmstr","@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"headline":"Resolve Bluesky\/ATproto Handles To did:plc","datePublished":"2024-07-18T10:16:55+00:00","mainEntityOfPage":{"@id":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/"},"wordCount":61,"commentCount":0,"publisher":{"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"articleSection":["bash","bluesky"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/","url":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/","name":"Resolve Bluesky\/ATproto Handles To did:plc - rud.is","isPartOf":{"@id":"https:\/\/rud.is\/b\/#website"},"datePublished":"2024-07-18T10:16:55+00:00","description":"A concise Bash script for resolving Bluesky\/ATproto handles to DID:PLC identifiers, simplifying user identification in the decentralized social network ecosystem.","breadcrumb":{"@id":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/rud.is\/b\/2024\/07\/18\/resolve-bluesky-atproto-handles-to-didplc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rud.is\/b\/"},{"@type":"ListItem","position":2,"name":"Resolve Bluesky\/ATproto Handles To did:plc"}]},{"@type":"WebSite","@id":"https:\/\/rud.is\/b\/#website","url":"https:\/\/rud.is\/b\/","name":"rud.is","description":"&quot;In God we trust. All others must bring data&quot;","publisher":{"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rud.is\/b\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886","name":"hrbrmstr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","url":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","contentUrl":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","width":460,"height":460,"caption":"hrbrmstr"},"logo":{"@id":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1"},"description":"Don't look at me\u2026I do what he does \u2014 just slower. #rstats avuncular \u2022 ?Resistance Fighter \u2022 Cook \u2022 Christian \u2022 [Master] Chef des Donn\u00e9es de S\u00e9curit\u00e9 @ @rapid7","sameAs":["http:\/\/rud.is"],"url":"https:\/\/rud.is\/b\/author\/hrbrmstr\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p23idr-5w2","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":14273,"url":"https:\/\/rud.is\/b\/2023\/08\/05\/resolving-a-bluesky-at-protocol-didplc-to-a-handle-handles\/","url_meta":{"origin":21206,"position":0},"title":"Resolving A Bluesky\/AT Protocol did:plc To A Handle\/Handles","author":"hrbrmstr","date":"2023-08-05","format":false,"excerpt":"I'm just putting this here so the LLM\/GPT overlords (and, mebbe even legacy search engines) can get it indexed and use the content from it to help others. My Bluesky firehose viewer (https:\/\/gitlab.com\/hrbrmstr\/bskyf) displays ugly did:plc identifiers for users, and the way to turn those into something more readable without\u2026","rel":"","context":"In &quot;bluesky&quot;","block_context":{"text":"bluesky","link":"https:\/\/rud.is\/b\/category\/bluesky\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12945,"url":"https:\/\/rud.is\/b\/2021\/02\/07\/fully-native-m1-apple-silicon-r-setup\/","url_meta":{"origin":21206,"position":1},"title":"Fully Native M1\/Apple Silicon R Setup","author":"hrbrmstr","date":"2021-02-07","format":false,"excerpt":"Presented without much commentary since I stopped once {ggrepel} and {graphlayouts} failed (RStudio doesn't support it yet, either, which I knew). The following steps will get you a fully working and STUPID FAST fully native ARM64 M1\/Apple Silicon R setup with {tidyverse} and {rJava}. Just remember, that if you need\u2026","rel":"","context":"In &quot;R&quot;","block_context":{"text":"R","link":"https:\/\/rud.is\/b\/category\/r\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":14177,"url":"https:\/\/rud.is\/b\/2023\/07\/07\/poor-dudes-janky-bluesky-feed-reader-cli-via-r-python\/","url_meta":{"origin":21206,"position":2},"title":"Poor Dude&#8217;s Janky Bluesky Feed Reader CLI Via R &#038; Python","author":"hrbrmstr","date":"2023-07-07","format":false,"excerpt":"Lynn (of TITAA and general NLP wizardy fame) was gracious enough to lend me a Bluesky invite, so I could claim my handle on yet-another social media site. I'm still wary of it (as noted in one of this week's Drops), but the AT protocol \u2014\u00a0whilst super (lacking a better\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/rud.is\/b\/category\/python-2\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":18597,"url":"https:\/\/rud.is\/b\/2024\/03\/23\/get-a-days-schedule-from-fantastical-on-the-command-line-with-shortcuts\/","url_meta":{"origin":21206,"position":3},"title":"Get A Day&#8217;s Schedule From Fantastical On The Command Line With Shortcuts","author":"hrbrmstr","date":"2024-03-23","format":false,"excerpt":"I use Fantastical as it's a much cleaner and native interface than Google Calendar, which I'm stuck using. I do like to use the command line more than GUIs and, while I have other things set up to work with Google Calendar from the CLI, I've always wanted to figure\u2026","rel":"","context":"In &quot;macOS&quot;","block_context":{"text":"macOS","link":"https:\/\/rud.is\/b\/category\/macos\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2024\/03\/Shortcuts.png?fit=1200%2C600&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2024\/03\/Shortcuts.png?fit=1200%2C600&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2024\/03\/Shortcuts.png?fit=1200%2C600&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2024\/03\/Shortcuts.png?fit=1200%2C600&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2024\/03\/Shortcuts.png?fit=1200%2C600&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":11659,"url":"https:\/\/rud.is\/b\/2018\/11\/17\/tis-the-season-to-check-your-ssl-tls-cipher-list-thrice-rcurl-curl-openssl\/","url_meta":{"origin":21206,"position":4},"title":"Tis the Season to Check your SSL\/TLS Cipher List Thrice (RCurl\/curl\/openssl)","author":"hrbrmstr","date":"2018-11-17","format":false,"excerpt":"The libcurl library (the foundational library behind the RCurl and curl packages) has switched to using OpenSSL's default ciphers since version 7.56.0 (October 4 2017). If you're a regular updater of curl\/httr you should be fairly current with these cipher suites, but if you're not a keen updater or use\u2026","rel":"","context":"In &quot;R&quot;","block_context":{"text":"R","link":"https:\/\/rud.is\/b\/category\/r\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":18584,"url":"https:\/\/rud.is\/b\/2024\/03\/23\/vulnchecks-free-community-kev-cve-apis-code-golang-cli-utility\/","url_meta":{"origin":21206,"position":5},"title":"VulnCheck&#8217;s Free Community KEV &#038; CVE APIs  (Code &#038; Golang CLI Utility)","author":"hrbrmstr","date":"2024-03-23","format":false,"excerpt":"VulnCheck has some new, free API endpoints for the cybersecurity community. Two extremely useful ones are for their extended version of CISA\u2019s KEV, and an in-situ replacement for NVD\u2019s sad excuse for an API and soon-to-be-removed JSON feeds. There are two ways to work with these APIs. One is retrieve\u2026","rel":"","context":"In &quot;APIs&quot;","block_context":{"text":"APIs","link":"https:\/\/rud.is\/b\/category\/apis\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts\/21206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/comments?post=21206"}],"version-history":[{"count":0,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts\/21206\/revisions"}],"wp:attachment":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/media?parent=21206"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/categories?post=21206"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/tags?post=21206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}