{"id":2289,"date":"2024-11-26T09:54:00","date_gmt":"2024-11-26T09:54:00","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=2289"},"modified":"2024-11-23T10:54:08","modified_gmt":"2024-11-23T10:54:08","slug":"hot-to-generate-and-add-an-ssh-key-for-secure-authentication","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/","title":{"rendered":"Hot to Generate and Add an ssh Key for Secure Authentication"},"content":{"rendered":"\n<p>Generating and adding an SSH key for secure authentication involves a few straightforward steps. Here\u2019s a guide to creating an SSH key, adding it to your local SSH agent, and configuring it for authentication with remote servers or services like GitHub, GitLab, etc.<\/p>\n\n\n\n<p><strong>Generate the SSH Key<\/strong><\/p>\n\n\n\n<p>When prompted to \u201cEnter a file in which to save the key,\u201d provide a custom path within the <code>htdocs<\/code> folder.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"277\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-1024x277.png\" alt=\"\" class=\"wp-image-2291\" style=\"width:887px;height:auto\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-1024x277.png 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-300x81.png 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-768x207.png 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18.png 1366w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>step1: Open Git Bash and run the following:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"510\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/ssh-key--1024x510.jpg\" alt=\"\" class=\"wp-image-2290\" style=\"width:920px;height:auto\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/ssh-key--1024x510.jpg 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/ssh-key--300x150.jpg 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/ssh-key--768x383.jpg 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/ssh-key-.jpg 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This command creates a new SSH key, using the provided email as a label.<\/p>\n\n\n\n<p>This saves the private key as <code>project_name_ssh_key<\/code> and the public key as <code>project_name_ssh_key.pub<\/code> in the <code>htdocs<\/code> folder. When prompted to &#8220;Enter a passphrase,&#8221; type a secure passphrase or press <strong>Enter<\/strong> to skip.<\/p>\n\n\n\n<p><strong>Step 2: Add the SSH Key to GitHub or a Server<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"488\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-git-hub-2-1024x488.jpg\" alt=\"\" class=\"wp-image-2297\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-git-hub-2-1024x488.jpg 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-git-hub-2-300x143.jpg 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-git-hub-2-768x366.jpg 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-git-hub-2.jpg 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Log in to GitHub and navigate to <strong>Settings > SSH and GPG keys<\/strong>.<\/li>\n\n\n\n<li> <strong>New SSH key<\/strong>, add a <strong>Title<\/strong>, paste the public key, and click <strong>Add SSH key<\/strong>.<\/li>\n<\/ul>\n\n\n\n<p><strong>For a Remote Server:<\/strong><\/p>\n\n\n\n<p>Copy the public key to the remote server&#8217;s <code>~\/.ssh\/authorized_keys<\/code> file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh username@server_ip<\/code><\/pre>\n\n\n\n<p>Append the key:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat .\/project_name_ssh_key.pub | ssh username@server_ip \"mkdir -p ~\/.ssh &amp;&amp; cat >> ~\/.ssh\/authorized_keys\"\n<\/code><\/pre>\n\n\n\n<p><strong>Test the SSH Key<\/strong><\/p>\n\n\n\n<p>Test the connection to GitHub:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh -T git@github.com\n<\/code><\/pre>\n\n\n\n<p>Test the connection to a remote server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh -i .\/project_name_ssh_key username@server_ip\n<\/code><\/pre>\n\n\n\n<p><strong>Test the SSH Key<\/strong><\/p>\n\n\n\n<p>Test the connection to GitHub:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh -T git@github.com\n<\/code><\/pre>\n\n\n\n<p>Test the connection to a remote server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh -i .\/project_name_ssh_key username@server_ip\n<\/code><\/pre>\n\n\n\n<p><strong>Configure Git to Use the SSH Key (Optional)<\/strong><\/p>\n\n\n\n<p>If you&#8217;re using Git in the <code>htdocs<\/code> folder and want it to use the generated SSH key:<\/p>\n\n\n\n<p>Add the key to the SSH agent:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>eval \"$(ssh-agent -s)\"\nssh-add .\/project_name_ssh_key<\/code><\/pre>\n\n\n\n<p>Configure Git to use this SSH key:<\/p>\n\n\n\n<p>git config core.ssh Command &#8220;ssh -i .\/project_name_ssh_key<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Generating and adding an SSH key for secure authentication involves a few straightforward steps. Here\u2019s a guide to creating an SSH key, adding it to your local&#8230; <\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2289","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hot to Generate and Add an ssh Key for Secure Authentication - DevOps Freelancer<\/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:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hot to Generate and Add an ssh Key for Secure Authentication - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"Generating and adding an SSH key for secure authentication involves a few straightforward steps. Here\u2019s a guide to creating an SSH key, adding it to your local...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-26T09:54:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-1024x277.png\" \/>\n<meta name=\"author\" content=\"ritikhansda k\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ritikhansda k\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/\"},\"author\":{\"name\":\"ritikhansda k\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/a4bc16c4b8b7743990295204011814e7\"},\"headline\":\"Hot to Generate and Add an ssh Key for Secure Authentication\",\"datePublished\":\"2024-11-26T09:54:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/\"},\"wordCount\":265,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-18-1024x277.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/\",\"name\":\"Hot to Generate and Add an ssh Key for Secure Authentication - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-18-1024x277.png\",\"datePublished\":\"2024-11-26T09:54:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/a4bc16c4b8b7743990295204011814e7\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-18.png\",\"contentUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-18.png\",\"width\":1366,\"height\":369},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hot to Generate and Add an ssh Key for Secure Authentication\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/a4bc16c4b8b7743990295204011814e7\",\"name\":\"ritikhansda k\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g\",\"caption\":\"ritikhansda k\"},\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/author\\\/ritikhansda\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hot to Generate and Add an ssh Key for Secure Authentication - DevOps Freelancer","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:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/","og_locale":"en_US","og_type":"article","og_title":"Hot to Generate and Add an ssh Key for Secure Authentication - DevOps Freelancer","og_description":"Generating and adding an SSH key for secure authentication involves a few straightforward steps. Here\u2019s a guide to creating an SSH key, adding it to your local...","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/","og_site_name":"DevOps Freelancer","article_published_time":"2024-11-26T09:54:00+00:00","og_image":[{"url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-1024x277.png","type":"","width":"","height":""}],"author":"ritikhansda k","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ritikhansda k","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/"},"author":{"name":"ritikhansda k","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/a4bc16c4b8b7743990295204011814e7"},"headline":"Hot to Generate and Add an ssh Key for Secure Authentication","datePublished":"2024-11-26T09:54:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/"},"wordCount":265,"commentCount":0,"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-1024x277.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/","name":"Hot to Generate and Add an ssh Key for Secure Authentication - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18-1024x277.png","datePublished":"2024-11-26T09:54:00+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/a4bc16c4b8b7743990295204011814e7"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#primaryimage","url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18.png","contentUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/11\/image-18.png","width":1366,"height":369},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/hot-to-generate-and-add-an-ssh-key-for-secure-authentication\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Hot to Generate and Add an ssh Key for Secure Authentication"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/a4bc16c4b8b7743990295204011814e7","name":"ritikhansda k","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g","caption":"ritikhansda k"},"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/ritikhansda\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/2289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=2289"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/2289\/revisions"}],"predecessor-version":[{"id":2298,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/2289\/revisions\/2298"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=2289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=2289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=2289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}