{"id":17729,"date":"2021-03-16T09:07:23","date_gmt":"2021-03-16T13:07:23","guid":{"rendered":"https:\/\/aptgadget.com\/?p=17729"},"modified":"2023-09-26T04:55:49","modified_gmt":"2023-09-26T08:55:49","slug":"fix-error-host-key-verification-failed","status":"publish","type":"post","link":"https:\/\/aptgadget.com\/fr\/fix-error-host-key-verification-failed\/","title":{"rendered":"How to Fix the Error \u201cHost Key Verification Failed\u201d"},"content":{"rendered":"<p>When connecting a server first time using <a href=\"https:\/\/aptgadget.com\/fr\/vpn-ssh-comparison\/\">ssh<\/a>, what happens in the background?<\/p>\n\n\n\n<p>The first time you connect to a server, the server will ask you to confirm if you are connected to the correct system. The example below uses ssh command to connect to remote named host03:<\/p>\n\n\n\n<p># ssh host03<\/p>\n\n\n\n<p>The authenticity of host \u2018host 03 (192.0.2.103)\u2019 can\u2019t be established. ECDSA key fingerprint is \u2026<\/p>\n\n\n\n<p>Are you sure you want to continue connecting (yes\/no)? yes&nbsp;<\/p>\n\n\n\n<p>Warning: Permanently added \u2018host03, 192.0.2.103\u2019 (ECDSA) to the list of unknown hosts<\/p>\n\n\n\n<p>One of the major features of OpenSSH is host validation. It checks to ensure that you are connecting to the host that you know you are connecting to. Once you validate by answering yes, the client will append the server\u2019s public host key to the user\u2019s ~\/.ssh\/known_hosts file, creating ~\/.ssh directory. Hence, when you connect to the remote server again, it will compare the mentioned key to the one that the server will supply. If they match, you will no longer be asked or verify.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What causes host key verification failed error?<\/h2>\n\n\n\n<p>You will receive a warning whenever someone would try to trick you into logging into a machine for them to be able to spy on your SSH session. You will receive a notification such as the following:<\/p>\n\n\n\n<p>WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!<\/p>\n\n\n\n<p>IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!<\/p>\n\n\n\n<p>Someone could be eavesdropping on you right now (man-in-the-middle attack)!<\/p>\n\n\n\n<p>It is also possible that the RSA host key has just been changed.<\/p>\n\n\n\n<p>The fingerprint for the RSA key sent by the remote host is<\/p>\n\n\n\n<p>dd:cf:50:31:7a:78:93:13:dd:99:67:c2:a2:19:22:13.<\/p>\n\n\n\n<p>Please contact your system administrator.<\/p>\n\n\n\n<p>Add correct host key in \/home\/user01\/.ssh\/known_hosts to get rid of this message.<\/p>\n\n\n\n<p>Offending key in \/home\/lcz\/.ssh\/known_hosts:7<\/p>\n\n\n\n<p>RSA host key for 192.168.219.149 has changed and you have requested strict checking.<\/p>\n\n\n\n<p>Host key verification failed.<\/p>\n\n\n\n<p>If you get this message, we suggest that you stop what you are doing and try to check and determine if there is a reason why your remote server\u2019s host key is about to change. This could be that your SSH was upgraded or the server itself could be upgraded. However, if these are not the reasons or there is no good reason for your host key to change, we recommend for you not to connect to that machine until you have resolved the situation.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to correct the \u201chost key verification failed\u201d error<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Method 1 \u2013 remove old key manually&nbsp;<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The old keys are stored in ~\/.ssh\/known_hosts on the source server.&nbsp;<\/li>\n\n\n\n<li>If you know the reason why the SSH server has a different key, edit the file known_hosts.<\/li>\n\n\n\n<li>Remove the no longer valid key entry.&nbsp;<\/li>\n\n\n\n<li>Remove the entry in the file of a specific user for destination server.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Example: for destination server 192.168.219.140 from file\/home\/user01\/.ssh\/known_hosts.<\/p>\n\n\n\n<p># vim \/home\/user01\/.ssh\/known_hosts<\/p>\n\n\n\n<p>172.104.9.113 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLrY91bQOihgFZQ2Ay9KiBG0rg51\/YxJAK7dvAIopRaWzFEEis3fQJiYZNLzLgQtlz6pIe2tj9m\/Za33W6WirN8=<\/p>\n\n\n\n<p>192.168.219.148 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCrY\/m16MdFt\/Ym51Cc7kxZW3R2pcHV1jlOclv6sXix1UhMuPdtoboj+b7+NLlTcjfrUccL+1bkg8EblYucymeU=<\/p>\n\n\n\n<p>192.168.219.149 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCrY\/m16MdFt\/Ym51Cc7kxZW3R2pcHV1jlOclv6sXix1UhMuPdtoboj+b7+NLlTcjfrUccL+1bkg8EblYucymeU=<\/p>\n\n\n\n<p>Delete:<\/p>\n\n\n\n<p>192.168.219.148 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCrY\/m16MdFt\/Ym51Cc7kxZW3R2pcHV1jlOclv6sXix1UhMuPdtoboj+b7+NLlTcjfrUccL+1bkg8EblYucymeU=<\/p>\n\n\n\n<p>192.168.219.149 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCrY\/m16MdFt\/Ym51Cc7kxZW3R2pcHV1jlOclv6sXix1UhMuPdtoboj+b7+NLlTcjfrUccL+1bkg8EblYucymeU=<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Method 2 \u2013 remove old key using ssh-keygen command<\/h4>\n\n\n\n<p>You could do this by using the syntax command:<\/p>\n\n\n\n<p>$ ssh-keygen \u2013R [hostname|IP address]<\/p>\n\n\n\n<p>In this case, we will use the IP address to delete the old key.<\/p>\n\n\n\n<p>$ ssh-keygen -R 192.168.219.149<\/p>\n\n\n\n<p># Host 192.168.219.149 found: line 3<\/p>\n\n\n\n<p>\/home\/user01\/.ssh\/known_hosts updated.<\/p>\n\n\n\n<p>Original contents retained as \/home\/user01\/.ssh\/known_hosts.old<\/p>\n\n\n\n<p>Take in mind that if you do not know why your SSH have a different key, it could be that your known_hosts file is not correct or someone is trying to check your server and network connections.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Verify<\/h3>\n\n\n\n<p>If you are being asked to confirm your remote servers to add new key to your ~\/.ssh\/known_host file, this means that once you confirm you will successfully remove your old key. Once you have confirmed this request, your source machine will add the new key into your ~\/.ssh\/known_host file.&nbsp;<\/p>\n\n\n\n<p>$ ssh root@192.168.219.149<\/p>\n\n\n\n<p>The authenticity of host &#8216;192.168.219.149 (192.168.219.149)&#8217; can&#8217;t be established.<\/p>\n\n\n\n<p>ECDSA key fingerprint is SHA256:V+iGp3gwSlnpbtYv4Niq6tcMMSZivSnYWQIaJnUvHb4.<\/p>\n\n\n\n<p>Are you sure you want to continue connecting (yes\/no)? yes<\/p>\n\n\n\n<p>Warning: Permanently added &#8216;192.168.219.149&#8217; (ECDSA) to the list of known hosts.<\/p>","protected":false},"excerpt":{"rendered":"<p>When connecting a server first time using ssh, what happens in the background? The first time you connect to a server, the server will ask you to confirm if you are connected to the correct system. The example below uses ssh command to connect to remote named host03: # ssh host03 The authenticity of host &hellip;<\/p>","protected":false},"author":1,"featured_media":17730,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[928],"tags":[],"class_list":["post-17729","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech-tips"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Fix the Error \u201cHost Key Verification Failed\u201d - AptGadget.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aptgadget.com\/fr\/fix-error-host-key-verification-failed\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix the Error \u201cHost Key Verification Failed\u201d\" \/>\n<meta property=\"og:description\" content=\"When connecting a server first time using ssh, what happens in the background? The first time you connect to a server, the server will ask you to confirm if you are connected to the correct system. The example below uses ssh command to connect to remote named host03: # ssh host03 The authenticity of host &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aptgadget.com\/fr\/fix-error-host-key-verification-failed\/\" \/>\n<meta property=\"og:site_name\" content=\"AptGadget.com\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-16T13:07:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-26T08:55:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png\" \/>\n\t<meta property=\"og:image:width\" content=\"721\" \/>\n\t<meta property=\"og:image:height\" content=\"462\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"gadgeteer\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"gadgeteer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/\"},\"author\":{\"name\":\"gadgeteer\",\"@id\":\"https:\/\/aptgadget.com\/#\/schema\/person\/b5ec99736bbdc994f64e1445eb6653dc\"},\"headline\":\"How to Fix the Error \u201cHost Key Verification Failed\u201d\",\"datePublished\":\"2021-03-16T13:07:23+00:00\",\"dateModified\":\"2023-09-26T08:55:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/\"},\"wordCount\":784,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png\",\"articleSection\":[\"Tech Tips\"],\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/\",\"url\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/\",\"name\":\"How to Fix the Error \u201cHost Key Verification Failed\u201d - AptGadget.com\",\"isPartOf\":{\"@id\":\"https:\/\/aptgadget.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png\",\"datePublished\":\"2021-03-16T13:07:23+00:00\",\"dateModified\":\"2023-09-26T08:55:49+00:00\",\"author\":{\"@id\":\"https:\/\/aptgadget.com\/#\/schema\/person\/b5ec99736bbdc994f64e1445eb6653dc\"},\"breadcrumb\":{\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage\",\"url\":\"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png\",\"contentUrl\":\"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png\",\"width\":721,\"height\":462,\"caption\":\"host key verification failed\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/aptgadget.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix the Error \u201cHost Key Verification Failed\u201d\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/aptgadget.com\/#website\",\"url\":\"https:\/\/aptgadget.com\/\",\"name\":\"AptGadget.com\",\"description\":\"Technology Reviews, Products and News\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/aptgadget.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/aptgadget.com\/#\/schema\/person\/b5ec99736bbdc994f64e1445eb6653dc\",\"name\":\"gadgeteer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/aptgadget.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0a375a65cb3e5864af36a386923874096e1c658e4948b08b3f39feda34840eef?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0a375a65cb3e5864af36a386923874096e1c658e4948b08b3f39feda34840eef?s=96&d=mm&r=g\",\"caption\":\"gadgeteer\"},\"url\":\"https:\/\/aptgadget.com\/fr\/author\/gadgeteer\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Fix the Error \u201cHost Key Verification Failed\u201d - AptGadget.com","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:\/\/aptgadget.com\/fr\/fix-error-host-key-verification-failed\/","og_locale":"fr_FR","og_type":"article","og_title":"How to Fix the Error \u201cHost Key Verification Failed\u201d","og_description":"When connecting a server first time using ssh, what happens in the background? The first time you connect to a server, the server will ask you to confirm if you are connected to the correct system. The example below uses ssh command to connect to remote named host03: # ssh host03 The authenticity of host &hellip;","og_url":"https:\/\/aptgadget.com\/fr\/fix-error-host-key-verification-failed\/","og_site_name":"AptGadget.com","article_published_time":"2021-03-16T13:07:23+00:00","article_modified_time":"2023-09-26T08:55:49+00:00","og_image":[{"width":721,"height":462,"url":"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png","type":"image\/png"}],"author":"gadgeteer","twitter_misc":{"\u00c9crit par":"gadgeteer","Dur\u00e9e de lecture estim\u00e9e":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#article","isPartOf":{"@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/"},"author":{"name":"gadgeteer","@id":"https:\/\/aptgadget.com\/#\/schema\/person\/b5ec99736bbdc994f64e1445eb6653dc"},"headline":"How to Fix the Error \u201cHost Key Verification Failed\u201d","datePublished":"2021-03-16T13:07:23+00:00","dateModified":"2023-09-26T08:55:49+00:00","mainEntityOfPage":{"@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/"},"wordCount":784,"commentCount":0,"image":{"@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage"},"thumbnailUrl":"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png","articleSection":["Tech Tips"],"inLanguage":"fr-FR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/","url":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/","name":"How to Fix the Error \u201cHost Key Verification Failed\u201d - AptGadget.com","isPartOf":{"@id":"https:\/\/aptgadget.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage"},"image":{"@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage"},"thumbnailUrl":"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png","datePublished":"2021-03-16T13:07:23+00:00","dateModified":"2023-09-26T08:55:49+00:00","author":{"@id":"https:\/\/aptgadget.com\/#\/schema\/person\/b5ec99736bbdc994f64e1445eb6653dc"},"breadcrumb":{"@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#primaryimage","url":"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png","contentUrl":"https:\/\/aptgadget.com\/wp-content\/uploads\/2021\/03\/host-key-verification-failed.png","width":721,"height":462,"caption":"host key verification failed"},{"@type":"BreadcrumbList","@id":"https:\/\/aptgadget.com\/fix-error-host-key-verification-failed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aptgadget.com\/"},{"@type":"ListItem","position":2,"name":"How to Fix the Error \u201cHost Key Verification Failed\u201d"}]},{"@type":"WebSite","@id":"https:\/\/aptgadget.com\/#website","url":"https:\/\/aptgadget.com\/","name":"AptGadget.com","description":"Technology Reviews, Products and News","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aptgadget.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Person","@id":"https:\/\/aptgadget.com\/#\/schema\/person\/b5ec99736bbdc994f64e1445eb6653dc","name":"gadgeteer","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/aptgadget.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0a375a65cb3e5864af36a386923874096e1c658e4948b08b3f39feda34840eef?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0a375a65cb3e5864af36a386923874096e1c658e4948b08b3f39feda34840eef?s=96&d=mm&r=g","caption":"gadgeteer"},"url":"https:\/\/aptgadget.com\/fr\/author\/gadgeteer\/"}]}},"_links":{"self":[{"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/posts\/17729","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/comments?post=17729"}],"version-history":[{"count":3,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/posts\/17729\/revisions"}],"predecessor-version":[{"id":21847,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/posts\/17729\/revisions\/21847"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/media\/17730"}],"wp:attachment":[{"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/media?parent=17729"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/categories?post=17729"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aptgadget.com\/fr\/wp-json\/wp\/v2\/tags?post=17729"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}