{"id":44335,"date":"2026-09-06T23:52:39","date_gmt":"2026-09-06T23:52:39","guid":{"rendered":"https:\/\/garfnet.org.uk\/cms\/?p=44335"},"modified":"2026-09-07T00:30:03","modified_gmt":"2026-09-07T00:30:03","slug":"fixing-geo-uri-links-in-firefox","status":"publish","type":"post","link":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/","title":{"rendered":"Fixing geo URI links in Firefox for OSM"},"content":{"rendered":"<p><strong>Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won&#8217;t open geo URI links using OSM (OpenStreetMap). This was doubly annoying for me because I have taken a lot of care to include geo URI links in this site recently. Moreover, OSM is by far my preferred mapping service. Anyway, this fix addressed the problem for me and it may fix the problem for you too.<\/strong><\/p>\n<h3>1. Create the handler script<\/h3>\n<p>Open a terminal and paste the following:<\/p>\n<pre>mkdir -p ~\/bin\r\n\r\ncat &gt; ~\/bin\/osm-geo-handler &lt;&lt;'EOF'\r\n#!\/bin\/sh\r\n\r\nuri=\"$1\"\r\n\r\ncase \"$uri\" in\r\n    geo:*)\r\n        coords=\"${uri#geo:}\"\r\n        coords=\"${coords%%;*}\"\r\n\r\n        lat=\"${coords%%,*}\"\r\n        rest=\"${coords#*,}\"\r\n        lon=\"${rest%%,*}\"\r\n        z=\"${rest#*,}\"\r\n\r\n        # If no zoom was supplied, use 18.\r\n        if [ \"$z\" = \"$rest\" ] || [ -z \"$z\" ]; then\r\n            z=18\r\n        fi\r\n\r\n        exec xdg-open \"https:\/\/www.openstreetmap.org\/#map=${z}\/${lat}\/${lon}\"\r\n        ;;\r\n    *)\r\n        exec xdg-open \"$uri\"\r\n        ;;\r\nesac\r\nEOF\r\n\r\nchmod +x ~\/bin\/osm-geo-handler\r\n<\/pre>\n<p>The important line is:<\/p>\n<pre>exec xdg-open \"https:\/\/www.openstreetmap.org\/#map=${z}\/${lat}\/${lon}\"\r\n<\/pre>\n<p>It must contain:<\/p>\n<pre>#map=\r\n<\/pre>\n<p>not:<\/p>\n<pre>?map=\r\n<\/pre>\n<p>OSM uses the #map=zoom\/latitude\/longitude format for this.<\/p>\n<h2>2. Test the script<\/h2>\n<p>For example:<\/p>\n<pre>~\/bin\/osm-geo-handler 'geo:50.9097,-1.4044'\r\n<\/pre>\n<p>It should open:<\/p>\n<pre>https:\/\/www.openstreetmap.org\/#map=18\/50.9097\/-1.4044\r\n<\/pre>\n<p>If that works, continue.<\/p>\n<h3>3. Create the desktop entry<\/h3>\n<pre>mkdir -p ~\/.local\/share\/applications\r\n\r\ncat &gt; ~\/.local\/share\/applications\/openstreetmap-geo-handler.desktop &lt;&lt;'EOF'\r\n[Desktop Entry]\r\nType=Application\r\nName=OpenStreetMap\r\nExec=\/home\/YOURUSERNAME\/bin\/osm-geo-handler %u\r\nIcon=map-globe\r\nMimeType=x-scheme-handler\/geo;\r\nTerminal=false\r\nNoDisplay=true\r\nStartupNotify=true\r\nEOF\r\n<\/pre>\n<p>NB. Replace YOURUSERNAME with your actual Linux username.&nbsp;So if your username were fred, the line is:<\/p>\n<pre>Exec=\/home\/fred\/bin\/osm-geo-handler %u\r\n<\/pre>\n<p><strong>Importantly, do not use:<\/strong><\/p>\n<pre>Exec=~\/bin\/osm-geo-handler %u\r\n<\/pre>\n<p><strong>or:<\/strong><\/p>\n<pre>Exec=\/home\/$USER\/bin\/osm-geo-handler %u\r\n<\/pre>\n<p>Use the <strong>actual absolute path<\/strong>. KDE &#8220;.desktop&#8221; files are exceptionally picky.<\/p>\n<h3>4. Register it<\/h3>\n<pre>update-desktop-database ~\/.local\/share\/applications\r\n<\/pre>\n<p>If that produces an error about some <em>unrelated<\/em> .desktop file, don&#8217;t immediately assume this one failed. It&#8217;s probably OK. FWIW, mine complained about some appimage I forgot I even had! But it&#8217;s irrelevant for fixing Firefox won&#8217;t open geo URIs in OSM!<\/p>\n<h3>5. Finally test Firefox<\/h3>\n<ol>\n<li>Click a geo: link in Firefox and select OpenStreetMap.<\/li>\n<li>If Firefox already has an old OpenStreetMap entry, you may see two. That&#8217;s a minor embuggerance rather than a major problem.<\/li>\n<li>Choose the new OpenStreetMap entry. That&#8217;s the one associated with the handler we just created.<\/li>\n<\/ol>\n<hr>\n<p>That&#8217;s it. Let me know if this works for you in the comments below&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won&#8217;t open geo URI links using OSM (OpenStreetMap). This was doubly annoying for me because I have taken a lot of care to include geo URI links in this site recently. Moreover, OSM is by far my preferred mapping service. Anyway,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":44351,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"_kad_post_transparent":"default","_kad_post_title":"default","_kad_post_layout":"default","_kad_post_sidebar_id":"","_kad_post_content_style":"default","_kad_post_vertical_padding":"default","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[1636,19,6,1635,18],"tags":[],"class_list":["post-44335","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-general","category-journal","category-kde","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fixing geo URI links in Firefox for OSM - GarfNet<\/title>\n<meta name=\"description\" content=\"Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won&#039;t open geo URI links using OSM (OpenStreetMap).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fixing geo URI links in Firefox for OSM - GarfNet\" \/>\n<meta property=\"og:description\" content=\"Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won&#039;t open geo URI links using OSM (OpenStreetMap).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/\" \/>\n<meta property=\"og:site_name\" content=\"GarfNet\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-06T23:52:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-07T00:30:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/09\/Screenshot_20260906_234619.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"486\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Garf\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Garf\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/\"},\"author\":{\"name\":\"Garf\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"headline\":\"Fixing geo URI links in Firefox for OSM\",\"datePublished\":\"2026-09-06T23:52:39+00:00\",\"dateModified\":\"2026-09-07T00:30:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/\"},\"wordCount\":272,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/Screenshot_20260906_234619.png\",\"articleSection\":[\"Debian\",\"General\",\"Journal\",\"KDE\",\"Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/\",\"name\":\"Fixing geo URI links in Firefox for OSM - GarfNet\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/Screenshot_20260906_234619.png\",\"datePublished\":\"2026-09-06T23:52:39+00:00\",\"dateModified\":\"2026-09-07T00:30:03+00:00\",\"description\":\"Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won't open geo URI links using OSM (OpenStreetMap).\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#primaryimage\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/Screenshot_20260906_234619.png\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/Screenshot_20260906_234619.png\",\"width\":800,\"height\":486},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/09\\\/06\\\/fixing-geo-uri-links-in-firefox\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fixing geo URI links in Firefox for OSM\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\",\"name\":\"GarfNet\",\"description\":\"Penguin-powered and full of Unixy goodness, since 1995...\",\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\",\"name\":\"Garf\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"width\":2420,\"height\":1928,\"caption\":\"Garf\"},\"logo\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\"},\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/author\\\/garf-admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fixing geo URI links in Firefox for OSM - GarfNet","description":"Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won't open geo URI links using OSM (OpenStreetMap).","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:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/","og_locale":"en_GB","og_type":"article","og_title":"Fixing geo URI links in Firefox for OSM - GarfNet","og_description":"Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won't open geo URI links using OSM (OpenStreetMap).","og_url":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/","og_site_name":"GarfNet","article_published_time":"2026-09-06T23:52:39+00:00","article_modified_time":"2026-09-07T00:30:03+00:00","og_image":[{"width":800,"height":486,"url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/09\/Screenshot_20260906_234619.png","type":"image\/png"}],"author":"Garf","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Garf","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#article","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/"},"author":{"name":"Garf","@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"headline":"Fixing geo URI links in Firefox for OSM","datePublished":"2026-09-06T23:52:39+00:00","dateModified":"2026-09-07T00:30:03+00:00","mainEntityOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/"},"wordCount":272,"commentCount":0,"publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/09\/Screenshot_20260906_234619.png","articleSection":["Debian","General","Journal","KDE","Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/","url":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/","name":"Fixing geo URI links in Firefox for OSM - GarfNet","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/#website"},"primaryImageOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#primaryimage"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/09\/Screenshot_20260906_234619.png","datePublished":"2026-09-06T23:52:39+00:00","dateModified":"2026-09-07T00:30:03+00:00","description":"Firefox running in Debian with KDE Desktop has a rather annoying bug, where it won't open geo URI links using OSM (OpenStreetMap).","breadcrumb":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#primaryimage","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/09\/Screenshot_20260906_234619.png","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/09\/Screenshot_20260906_234619.png","width":800,"height":486},{"@type":"BreadcrumbList","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/09\/06\/fixing-geo-uri-links-in-firefox\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/garfnet.org.uk\/cms\/"},{"@type":"ListItem","position":2,"name":"Fixing geo URI links in Firefox for OSM"}]},{"@type":"WebSite","@id":"https:\/\/garfnet.org.uk\/cms\/#website","url":"https:\/\/garfnet.org.uk\/cms\/","name":"GarfNet","description":"Penguin-powered and full of Unixy goodness, since 1995...","publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/garfnet.org.uk\/cms\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635","name":"Garf","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","width":2420,"height":1928,"caption":"Garf"},"logo":{"@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png"},"url":"https:\/\/garfnet.org.uk\/cms\/author\/garf-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/44335","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/comments?post=44335"}],"version-history":[{"count":12,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/44335\/revisions"}],"predecessor-version":[{"id":44359,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/44335\/revisions\/44359"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media\/44351"}],"wp:attachment":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media?parent=44335"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/categories?post=44335"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/tags?post=44335"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}