{"id":9667,"date":"2022-09-30T14:23:10","date_gmt":"2022-09-30T08:53:10","guid":{"rendered":"https:\/\/www.skynats.com\/?p=9667"},"modified":"2023-06-15T17:03:37","modified_gmt":"2023-06-15T11:33:37","slug":"aws-cli-unable-to-locate-credentials","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/","title":{"rendered":"AWS CLI Unable To Locate Credentials | How To Fix?"},"content":{"rendered":"\n<p>To fix the &#8220;Unable to locate credentials&#8221; error, configure AWS credentials correctly in the AWS CLI. All Amazon S3 questions are answered by Skynats as a part of our <a href=\"https:\/\/www.skynats.com\/aws-management\/\" target=\"_blank\" rel=\"noreferrer noopener\">AWS Support Services<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-error-unable-to-locate-credentials-while-using-aws-cli\">Error \u201cUnable to locate credentials\u201d while using AWS CLI<\/h2>\n\n\n\n<p>In a local file called credentials, located in a folder called.aws in the home directory, the AWS CLI stores sensitive credential information that we specify with AWS configured. When Amazon S3 cannot locate the credentials to authenticate AWS API calls, an &#8220;Unable to locate credentials&#8221; error in the AWS CLI is displayed. This typically happens when:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>The AWS CLI&#8217;s configuration of the AWS credentials is incorrect.<\/li>\n\n\n\n<li>Using an outdated AWS CLI version<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-fixing-error-unable-to-locate-credentials-while-using-aws-cli\">Fixing Error \u201cUnable to locate credentials\u201d while using AWS CLI<\/h3>\n\n\n\n<p>Our Support team advises verifying the AWS credentials are correctly configured in the AWS CLI to resolve the issue. We can check this by running the following command to see if the AWS CLI is set up with credentials:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ aws configure list<\/code><\/pre>\n\n\n\n<p>The command returns a result that resembles the following when credentials are set in the configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Name                    Value                    Type            Location\n----                    -----                    ----            --------\nprofile                &lt;not set&gt;                 None            None\naccess_key             ****************ABCD      config_file    ~\/.aws\/config\nsecret_key             ****************ABCD      config_file    ~\/.aws\/config\nregion                 us-west-1 env AWS_DEFAULT_REGION<\/code><\/pre>\n\n\n\n<p>The command returns a result that looks like this if credentials were configured using environment variables:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Name                   Value                     Type            Location\n----                   -----                     ----            --------\nprofile                &lt;not set&gt;                 None            None\naccess_key             ****************N36N      env    \nsecret_key             ****************cxxy      env    \nregion                 &lt;not set&gt;                 None            None\n\n<\/code><\/pre>\n\n\n\n<p>If the credentials are set up in an instance profile, the command returns a response that looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Name                    Value                    Type              Location\n----                    -----                    ----              --------\nprofile                &lt;not set&gt;                 None               None\naccess_key             ****************YVEQ      iam-role\nsecret_key             ****************2a9N      iam-role\nregion                 &lt;not set&gt;                 None               None<\/code><\/pre>\n\n\n\n<p>If the command returns the following result, no credentials are configured.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Name                    Value             Type                Location\n----                    -----             ----                --------\nprofile                &lt;not set&gt;          None                None\naccess_key             &lt;not set&gt;          None                None\nsecret_key             &lt;not set&gt;          None                None\nregion                 &lt;not set&gt;          None                None<\/code><\/pre>\n\n\n\n<p>We must examine the response to determine whether credentials are missing or incorrect if we want to resolve the AWS CLI unable to locate credentials error.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-how-to-set-and-view-credentials\">How To Set And View Credentials?<\/h4>\n\n\n\n<p>The credentials, region, and output format can all be set and viewed using aws configure. E.g.,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>AWS Access Key ID &#91;None]: AKIAIOSFODNN7EXAMPLE  AWS Secret Access Key &#91;None]: wJalrXUtnFEMI\/K7MDENG\/bPxRfiCYEXAMPLEKEY  Default region name &#91;None]: us-west-2  Default output format &#91;None]: json<\/code><\/pre>\n\n\n\n<p>You can set any credentials or configuration settings by using the command aws configure set. Use the -profile setting to specify the profile that you want to view or edit. For instance, the command below sets the region for the Skynats profile.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws configure set region us-west-2 --profile skynats<\/code><\/pre>\n\n\n\n<p>Use an empty string as the setting&#8217;s value or manually remove the setting in the config and credentials files using a text editor to remove a setting.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws configure set cli_pager \"\" --profile skynats<\/code><\/pre>\n\n\n\n<p>To prevent errors, we must also make sure to use the most recent AWS CLI version.<\/p>\n\n\n\n<p>Here is an example of an AWS CLI &#8220;unable to locate credentials&#8221; error and how our Support team helped the user resolve it. The user receives the error message &#8220;Unable to locate credentials&#8221; after attempting to mount an EBS drive and download some files from S3 using the shell script. The customer entered the following code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/bash\n\nAWS_CONFIG_FILE=\"~\/.aws\/config\"\n\necho $1\n\nsudo mkfs -t ext4 $1\nsudo mkdir \/s3-backup-test\nsudo chmod -R ugo+rw \/s3-backup-test\nsudo mount $1 \/s3-backup-test\n\nsudo aws s3 sync s3:\/\/backup-test-s3 \/s3-backup\/test\n\ndu -h \/s3-backup-test\nipt (short version):<\/code><\/pre>\n\n\n\n<p>We can infer from examining the code that the user runs the script with sudo. They do, however, specify the credentials for a standard user. To resolve the issue of being unable to locate credentials in AWS CLI, our Support team recommends that the user perform all AWS operations as root or as a normal user. This occurs because sudo changes the $HOME directory to \/root and removes most bash variables such as AWS_CONFIG_FILE from the environment.<\/p>\n\n\n\n<p>Are you looking for an answer to another query?\u00a0<a href=\"https:\/\/www.skynats.com\/linux-server-management\/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Contact<\/em><\/a>\u00a0our technical support team.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To fix the &#8220;Unable to locate credentials&#8221; error, configure AWS credentials correctly in the AWS CLI. All Amazon S3 questions are answered by Skynats as a part of our AWS Support Services. Error \u201cUnable to locate credentials\u201d while using AWS CLI In a local file called credentials, located in a folder called.aws in the home [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[730],"class_list":["post-9667","post","type-post","status-publish","format-standard","hentry","category-blog","tag-aws-cli"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>AWS CLI Unable To Locate Credentials | How To Fix? | Skynats<\/title>\n<meta name=\"description\" content=\"An &quot;Unable to locate credentials&quot; error in the AWS CLI is displayed. This happens when: AWS CLI&#039;s configuration of the AWS credentials is incorrect.\" \/>\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.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS CLI Unable To Locate Credentials | How To Fix?\" \/>\n<meta property=\"og:description\" content=\"An &quot;Unable to locate credentials&quot; error in the AWS CLI is displayed. This happens when: AWS CLI&#039;s configuration of the AWS credentials is incorrect.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-30T08:53:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-15T11:33:37+00:00\" \/>\n<meta name=\"author\" content=\"Amal K\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amal K\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\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:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/\"},\"author\":{\"name\":\"Amal K\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/eb9a945e086d898e0851970119204ba2\"},\"headline\":\"AWS CLI Unable To Locate Credentials | How To Fix?\",\"datePublished\":\"2022-09-30T08:53:10+00:00\",\"dateModified\":\"2023-06-15T11:33:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/\"},\"wordCount\":520,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"AWS CLI\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/\",\"name\":\"AWS CLI Unable To Locate Credentials | How To Fix? | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2022-09-30T08:53:10+00:00\",\"dateModified\":\"2023-06-15T11:33:37+00:00\",\"description\":\"An \\\"Unable to locate credentials\\\" error in the AWS CLI is displayed. This happens when: AWS CLI's configuration of the AWS credentials is incorrect.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/aws-cli-unable-to-locate-credentials\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AWS CLI Unable To Locate Credentials | How To Fix?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/eb9a945e086d898e0851970119204ba2\",\"name\":\"Amal K\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/13013cfcd9ea84e6abbb1ee0bb4d0519034d183895c25cf7845bf4195ce75556?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/13013cfcd9ea84e6abbb1ee0bb4d0519034d183895c25cf7845bf4195ce75556?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/13013cfcd9ea84e6abbb1ee0bb4d0519034d183895c25cf7845bf4195ce75556?s=96&d=mm&r=g\",\"caption\":\"Amal K\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"AWS CLI Unable To Locate Credentials | How To Fix? | Skynats","description":"An \"Unable to locate credentials\" error in the AWS CLI is displayed. This happens when: AWS CLI's configuration of the AWS credentials is incorrect.","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.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/","og_locale":"en_US","og_type":"article","og_title":"AWS CLI Unable To Locate Credentials | How To Fix?","og_description":"An \"Unable to locate credentials\" error in the AWS CLI is displayed. This happens when: AWS CLI's configuration of the AWS credentials is incorrect.","og_url":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2022-09-30T08:53:10+00:00","article_modified_time":"2023-06-15T11:33:37+00:00","author":"Amal K","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Amal K","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/"},"author":{"name":"Amal K","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/eb9a945e086d898e0851970119204ba2"},"headline":"AWS CLI Unable To Locate Credentials | How To Fix?","datePublished":"2022-09-30T08:53:10+00:00","dateModified":"2023-06-15T11:33:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/"},"wordCount":520,"commentCount":0,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["AWS CLI"],"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/","url":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/","name":"AWS CLI Unable To Locate Credentials | How To Fix? | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2022-09-30T08:53:10+00:00","dateModified":"2023-06-15T11:33:37+00:00","description":"An \"Unable to locate credentials\" error in the AWS CLI is displayed. This happens when: AWS CLI's configuration of the AWS credentials is incorrect.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/aws-cli-unable-to-locate-credentials\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"AWS CLI Unable To Locate Credentials | How To Fix?"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/eb9a945e086d898e0851970119204ba2","name":"Amal K","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/13013cfcd9ea84e6abbb1ee0bb4d0519034d183895c25cf7845bf4195ce75556?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/13013cfcd9ea84e6abbb1ee0bb4d0519034d183895c25cf7845bf4195ce75556?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/13013cfcd9ea84e6abbb1ee0bb4d0519034d183895c25cf7845bf4195ce75556?s=96&d=mm&r=g","caption":"Amal K"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/9667","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=9667"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/9667\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=9667"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=9667"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=9667"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}