{"id":22908,"date":"2020-09-18T19:59:36","date_gmt":"2020-09-19T02:59:36","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22908"},"modified":"2023-12-01T04:00:13","modified_gmt":"2023-12-01T12:00:13","slug":"git-please-make-sure-you-have-the-correct-access-rights","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/","title":{"rendered":"Git Please make sure you have the correct access rights Solution"},"content":{"rendered":"\n<p>You must have permission to access a Git repository before you can clone or modify a repository. If you try to clone or modify a repository which you do not have permission to access, you\u2019ll encounter the \u201cPlease make sure you have the correct access rights\u201d error.<br><\/p>\n\n\n\n<p>This guide discusses the cause of and two potential solutions to this error. It walks you through the solutions step-by-step so you can learn how to use them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Please make sure you have the correct access rights<\/h2>\n\n\n\n<p>To secure the code within a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git repository<\/a>, the Git protocol restricts who can access a repository.<br><\/p>\n\n\n\n<p>You must correctly specify the remote URL for a Git repository to access the project. If you specify the wrong URL, you will likely encounter an error about access rights because you\u2019ll be trying to access a different project over which you may not have control.<br><\/p>\n\n\n\n<p>You need to have privileges to access a repository if you want to clone or modify it. For instance, suppose you have a repository on GitHub. If that repository is private, only you should be able to access it. Git makes sure only you can access your repositories by asking you to pass a method of authentication, like a username and password check.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019re going to clone the repository ck-git from GitHub. This repository is protected because it contains demo code that is not for the public&#8217;s use.<br><\/p>\n\n\n\n<p>To clone this repository, we can use the <a href=\"https:\/\/careerkarma.com\/blog\/git-clone\/\">git clone command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone https:\/\/github.com\/career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>This command retrieves all the code from our remote repository and saves it to our local machine. When we run this command, we encounter this error message:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Permission denied (publickey,password).\nfatal: Could not read from remote repository.\n\nPlease make sure you have the correct access rights\nand the repository exists.<\/pre><\/div>\n\n\n\n<p>Let\u2019s read over this message. Git is telling us we do not have the correct access rights. This means we are either not authenticated or have not been granted access to a repository.<br><\/p>\n\n\n\n<p>The most likely cause of this error is that you are not correctly authenticated. This may happen if you have changed your Git credentials or if the location of your repository has moved and a new one over which you have no access rights has replaced the old one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>There are two potential solutions to this problem:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Check your Git URL<\/li><li>Ensure you have set up SSH public key and private key authentication correctly<\/li><\/ul>\n\n\n\n<p>Your first port of call should be to check your <a href=\"https:\/\/careerkarma.com\/blog\/git-add-remote\/\">Git remote URL<\/a> to make sure it is correct. In our case, we want to clone a project called career-karma-tutorials\/ck-git from GitHub. Let\u2019s check the clone command that we wrote earlier:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone https:\/\/github.com\/career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>This command correctly points to our repository. If you try to clone the wrong repository, you may encounter the access rights error.<br><\/p>\n\n\n\n<p>If this does not work, proceed to check for SSH authentication issues.<br><\/p>\n\n\n\n<p>If you use <a href=\"https:\/\/careerkarma.com\/blog\/ssh-command\/\">SSH authentication<\/a> to connect to a repository, make sure you have added your SSH key to your SSH agent. This will ensure that your SSH key is accessible to Git so that it can use the key to authenticate you with a repository.<br><\/p>\n\n\n\n<p>To make sure that your SSH key has been added to your agent, you can run the ssh-add command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ssh-add<\/pre><\/div>\n\n\n\n<p>This command will add your identity files to your SSH agent. Assuming the problem was that you had not set up SSH authentication on your local machine, this will solve the error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A Solution for Existing Repositories<\/h2>\n\n\n\n<p>You may encounter the \u201cPlease make sure you have the correct access rights\u201d error in an existing repository with which you are working. This may be caused by an SSH issue so you should check your SSH authentication setup if you use it before you proceed.<br><\/p>\n\n\n\n<p>Assuming SSH authentication is not your issue, make sure you are pointing to the correct remote URL in your repository. You can do this using the git remote command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote -v<\/pre><\/div>\n\n\n\n<p>The -v flag lets us see the URLs to which our repository is pointing:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>origin    https:\/\/github.com\/career-karma-tutorials\/ck-git (fetch)\norigin    https:\/\/github.com\/career-karma-tutorials\/ck-git (push)<\/pre><\/div>\n\n\n\n<p>Suppose our repository moved to ck-git-tutorials and a new repository called ck-git was created over which we have no permission. We\u2019ll have to update our remote pointer so we point to the correct repository.<br><\/p>\n\n\n\n<p>We can do this using the <a href=\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\">git remote set-url command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote set-url origin https:\/\/github.com\/career-karma-tutorials\/ck-git-tutorials<\/pre><\/div>\n\n\n\n<p>This will change our pointer to the ck-git-tutorials repository. Now, we can change our repository and push our code using the git push command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cPlease make sure you have the correct access rights\u201d error occurs if you do not have the right permissions to access a Git repository.<br><\/p>\n\n\n\n<p>To solve this error, make sure you are referring to the correct remote URL and that you have set up SSH authentication correctly. If this error occurs in an existing repository, check to make sure your remote URLs are up-to-date.<\/p>\n","protected":false},"excerpt":{"rendered":"You must have permission to access a Git repository before you can clone or modify a repository. If you try to clone or modify a repository which you do not have permission to access, you\u2019ll encounter the \u201cPlease make sure you have the correct access rights\u201d error. This guide discusses the cause of and two&hellip;","protected":false},"author":240,"featured_media":18090,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-22908","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-git"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Git","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Git Please make sure you have the correct access rights | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git Please make sure you have the correct access rights error.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Please make sure you have the correct access rights Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git Please make sure you have the correct access rights error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-19T02:59:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git Please make sure you have the correct access rights Solution\",\"datePublished\":\"2020-09-19T02:59:36+00:00\",\"dateModified\":\"2023-12-01T12:00:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\"},\"wordCount\":804,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\",\"name\":\"Git Please make sure you have the correct access rights | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg\",\"datePublished\":\"2020-09-19T02:59:36+00:00\",\"dateModified\":\"2023-12-01T12:00:13+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn the cause of and the solution to the Git Please make sure you have the correct access rights error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"Woman wearing black shirt sitting at desk, working on computer\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git\",\"item\":\"https:\/\/careerkarma.com\/blog\/git\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Git Please make sure you have the correct access rights Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Git Please make sure you have the correct access rights | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Git Please make sure you have the correct access rights error.","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:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/","og_locale":"en_US","og_type":"article","og_title":"Git Please make sure you have the correct access rights Solution","og_description":"On Career Karma, learn the cause of and the solution to the Git Please make sure you have the correct access rights error.","og_url":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-19T02:59:36+00:00","article_modified_time":"2023-12-01T12:00:13+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git Please make sure you have the correct access rights Solution","datePublished":"2020-09-19T02:59:36+00:00","dateModified":"2023-12-01T12:00:13+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/"},"wordCount":804,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/","url":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/","name":"Git Please make sure you have the correct access rights | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg","datePublished":"2020-09-19T02:59:36+00:00","dateModified":"2023-12-01T12:00:13+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn the cause of and the solution to the Git Please make sure you have the correct access rights error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/kelly-sikkema-YK0HPwWDJ1I-unsplash.jpg","width":1020,"height":680,"caption":"Woman wearing black shirt sitting at desk, working on computer"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-please-make-sure-you-have-the-correct-access-rights\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Git","item":"https:\/\/careerkarma.com\/blog\/git\/"},{"@type":"ListItem","position":3,"name":"Git Please make sure you have the correct access rights Solution"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22908","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=22908"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22908\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18090"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22908"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22908"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22908"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}