{"id":569,"date":"2025-01-31T15:00:00","date_gmt":"2025-01-31T07:00:00","guid":{"rendered":"https:\/\/witlab.ph\/blog\/?p=569"},"modified":"2025-01-31T10:13:49","modified_gmt":"2025-01-31T02:13:49","slug":"managing-github-repos-and-cloud-servers-with-ssh-key-integration","status":"publish","type":"post","link":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/","title":{"rendered":"Managing GitHub Repos and Cloud Servers with SSH Key Integration"},"content":{"rendered":"\n<p>Managing GitHub repositories on a cloud server securely requires proper authentication. Deploy keys are one of the most effective ways to enable secure repository access. Deploy keys allow a server to pull (or optionally push) from a repository without requiring a personal GitHub account&#8217;s credentials. This guide focuses on configuring deploy keys for multiple repositories on a cloud server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What are Deploy Keys?<\/strong><\/h3>\n\n\n\n<p>A <strong>deploy key<\/strong> is an SSH key associated with a specific GitHub repository, granting access without using a personal SSH key. Each repository requires its deploy key, meaning that multiple repositories need separate SSH keys.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Generating SSH Keys for Each Repository<\/strong><\/h3>\n\n\n\n<p>Since deploy keys are repository-specific, you need to create a separate SSH key for each repository.<\/p>\n\n\n\n<p>Run the following command to generate a new key for a specific repository:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\nssh-keygen -t rsa -b 4096 -C \"deploy-key-repo1\"\n<\/pre>\n\n\n\n<p>Save the key with a unique name.<\/p>\n\n\n\n<pre class=\"brush:powershell\">\n~\/.ssh\/id_rsa_repo1\n<\/pre>\n\n\n\n<p>Repeat this step for each repository, ensuring unique filenames.<\/p>\n\n\n\n<pre class=\"brush:powershell\">\nid_rsa_repo2, id_rsa_repo3, etc.\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Adding the Deploy Key to GitHub<\/strong><\/h3>\n\n\n\n<p>Copy the public key:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\ncat ~\/.ssh\/id_rsa_repo1.pub\n<\/pre>\n\n\n\n<p>1. Go to <strong>GitHub &gt; Your Repository &gt; Settings &gt; Deploy keys<\/strong>.<\/p>\n\n\n\n<p>2. Click <strong>Add deploy key<\/strong>, and give it a descriptive name (e.g., <code>Cloud Server Repo 1<\/code>).<\/p>\n\n\n\n<p>3. Paste the public key and click the<strong> Add key<\/strong>.<\/p>\n\n\n\n<p>4. Repeat these steps for each repository, using its corresponding public key.<\/p>\n\n\n\n<p>5. After generating a key for a repository, add the public key to GitHub:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Configuring SSH for Multiple Deploy Keys<\/strong><\/h3>\n\n\n\n<p>Since multiple repositories use different SSH keys, configure the SSH client to specify which key to use for each repository.<\/p>\n\n\n\n<p>Start the SSH agent and add the keys:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\neval \"$(ssh-agent -s)\"\nssh-add ~\/.ssh\/id_rsa_repo1\nssh-add ~\/.ssh\/id_rsa_repo2\n<\/pre>\n\n\n\n<p>Edit the SSH configuration file:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\nnano ~\/.ssh\/config\n<\/pre>\n\n\n\n<p>Add entries for each repository:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\nHost repo1.github.com\n    HostName github.com\n    User git\n    IdentityFile ~\/.ssh\/id_rsa_repo1\n\nHost repo2.github.com\n    HostName github.com\n    User git\n    IdentityFile ~\/.ssh\/id_rsa_repo2\n<\/pre>\n\n\n\n<p>This setup ensures that each repository uses the correct deploy key when making SSH requests.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Testing the SSH Connection<\/strong><\/h3>\n\n\n\n<p>After configuring SSH, verify that the connection works properly by testing each deploy key:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\nssh -T git@repo1.github.com\nssh -T git@repo2.github.com\n<\/pre>\n\n\n\n<p>If everything is set up correctly, you should see a message like this:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\nHi username! You've successfully authenticated, but GitHub does not provide shell access.\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Cloning Repositories with Deploy Keys<\/strong><\/h3>\n\n\n\n<p>Now, you can clone repositories using their respective SSH aliases:<\/p>\n\n\n\n<pre class=\"brush:powershell\">\ngit clone git@repo1.github.com:username\/repo1.git\ngit clone git@repo2.github.com:username\/repo2.git\n<\/pre>\n\n\n\n<p>Since each repository is associated with a unique deploy key, the cloud server can securely access multiple repositories without requiring a single, shared SSH key.<\/p>\n\n\n\n<p>Using <strong>deploy keys<\/strong> for each repository allows a cloud server to securely interact with multiple GitHub repositories without exposing personal credentials. By generating separate SSH keys and configuring SSH properly, you ensure a secure and efficient workflow. Implement this method to manage your repositories securely and efficiently!<\/p>\n\n\n\n<p>Ref: <a href=\"https:\/\/docs.github.com\/en\/authentication\/connecting-to-github-with-ssh\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/docs.github.com\/en\/authentication\/connecting-to-github-with-ssh<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Managing GitHub repositories on a cloud server securely requires proper authentication. Deploy keys are one of the most effective ways to enable secure repository access. Deploy keys allow a server to pull (or optionally push) from a repository without requiring a personal GitHub account&#8217;s credentials. This guide focuses on configuring deploy keys for multiple repositories [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":598,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-569","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-system"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Managing GitHub Repos and Cloud Servers with SSH Key Integration - WIT LAB %<\/title>\n<meta name=\"description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Managing GitHub Repos and Cloud Servers with SSH Key Integration - WIT LAB %\" \/>\n<meta property=\"og:description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\" \/>\n<meta property=\"og:site_name\" content=\"WIT LAB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-31T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-31T02:13:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"366\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Aung Nyi Thit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aung Nyi Thit\" \/>\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\",\"BlogPosting\"],\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\"},\"author\":{\"name\":\"Aung Nyi Thit\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/4df708bd91fad188e81ec5addf45b5c3\"},\"headline\":\"Managing GitHub Repos and Cloud Servers with SSH Key Integration\",\"datePublished\":\"2025-01-31T07:00:00+00:00\",\"dateModified\":\"2025-01-31T02:13:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\"},\"wordCount\":415,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg\",\"articleSection\":[\"System\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\",\"url\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\",\"name\":\"Managing GitHub Repos and Cloud Servers with SSH Key Integration - WIT LAB %\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg\",\"datePublished\":\"2025-01-31T07:00:00+00:00\",\"dateModified\":\"2025-01-31T02:13:49+00:00\",\"description\":\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\",\"breadcrumb\":{\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg\",\"width\":700,\"height\":366},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/witlab.ph\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Managing GitHub Repos and Cloud Servers with SSH Key Integration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/witlab.ph\/blog\/#website\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"name\":\"WIT LAB\",\"description\":\"Web Development\",\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"alternateName\":\"WIT LAB INC\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/witlab.ph\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\",\"name\":\"WIT LAB INC\",\"alternateName\":\"Spiceworks (Japan)\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"width\":681,\"height\":616,\"caption\":\"WIT LAB INC\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/4df708bd91fad188e81ec5addf45b5c3\",\"name\":\"Aung Nyi Thit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g\",\"caption\":\"Aung Nyi Thit\"},\"sameAs\":[\"http:\/\/rapidspice-wp.local\/blog\"],\"url\":\"https:\/\/witlab.ph\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Managing GitHub Repos and Cloud Servers with SSH Key Integration - WIT LAB %","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","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:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/","og_locale":"en_US","og_type":"article","og_title":"Managing GitHub Repos and Cloud Servers with SSH Key Integration - WIT LAB %","og_description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","og_url":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/","og_site_name":"WIT LAB","article_publisher":"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/","article_published_time":"2025-01-31T07:00:00+00:00","article_modified_time":"2025-01-31T02:13:49+00:00","og_image":[{"width":700,"height":366,"url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg","type":"image\/jpeg"}],"author":"Aung Nyi Thit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Aung Nyi Thit","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#article","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/"},"author":{"name":"Aung Nyi Thit","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/4df708bd91fad188e81ec5addf45b5c3"},"headline":"Managing GitHub Repos and Cloud Servers with SSH Key Integration","datePublished":"2025-01-31T07:00:00+00:00","dateModified":"2025-01-31T02:13:49+00:00","mainEntityOfPage":{"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/"},"wordCount":415,"commentCount":0,"publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"image":{"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg","articleSection":["System"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/","url":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/","name":"Managing GitHub Repos and Cloud Servers with SSH Key Integration - WIT LAB %","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage"},"image":{"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg","datePublished":"2025-01-31T07:00:00+00:00","dateModified":"2025-01-31T02:13:49+00:00","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","breadcrumb":{"@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#primaryimage","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/blog_cover.jpg","width":700,"height":366},{"@type":"BreadcrumbList","@id":"https:\/\/witlab.ph\/blog\/managing-github-repos-and-cloud-servers-with-ssh-key-integration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/witlab.ph\/blog\/"},{"@type":"ListItem","position":2,"name":"Managing GitHub Repos and Cloud Servers with SSH Key Integration"}]},{"@type":"WebSite","@id":"https:\/\/witlab.ph\/blog\/#website","url":"https:\/\/witlab.ph\/blog\/","name":"WIT LAB","description":"Web Development","publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"alternateName":"WIT LAB INC","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/witlab.ph\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/witlab.ph\/blog\/#organization","name":"WIT LAB INC","alternateName":"Spiceworks (Japan)","url":"https:\/\/witlab.ph\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","width":681,"height":616,"caption":"WIT LAB INC"},"image":{"@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/"]},{"@type":"Person","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/4df708bd91fad188e81ec5addf45b5c3","name":"Aung Nyi Thit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g","caption":"Aung Nyi Thit"},"sameAs":["http:\/\/rapidspice-wp.local\/blog"],"url":"https:\/\/witlab.ph\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/569"}],"collection":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/comments?post=569"}],"version-history":[{"count":21,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/569\/revisions"}],"predecessor-version":[{"id":600,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/569\/revisions\/600"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media\/598"}],"wp:attachment":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media?parent=569"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/categories?post=569"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/tags?post=569"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}