{"id":23010,"date":"2020-09-21T06:35:09","date_gmt":"2020-09-21T13:35:09","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23010"},"modified":"2023-12-01T04:00:15","modified_gmt":"2023-12-01T12:00:15","slug":"git-remote-invalid-username-or-password","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/","title":{"rendered":"Git remote: invalid username or password Solution"},"content":{"rendered":"\n<p>To access private remote repositories and modify remote repositories using the <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git command line<\/a>, you must be authenticated. If you try to access or modify a repository and enter the wrong authentication credentials, you\u2019ll encounter the <code>remote: invalid username or password<\/code> error.<br><\/p>\n\n\n\n<p>In this guide, we discuss the most common causes of this error. We\u2019ll walk through a few examples of how to fix this error so you can solve the problem you are facing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">remote: invalid username or password<\/h2>\n\n\n\n<p>The most common cause of this error is that you have inserted an invalid username or password. Before you try any other solution, make sure you have correctly typed in your username and password to authenticate to the <a href=\"https:\/\/careerkarma.com\/blog\/git-vs-svn\/\">Git server<\/a>.<br><\/p>\n\n\n\n<p>You may see this error when you clone a repository that is private or when you try to pull from or push to an existing repository without being correctly authenticated.<br><\/p>\n\n\n\n<p>There are other causes to this error. In many cases, Git does not provide specific explanations as to why authentication has failed. Git often just tells you that your credentials are invalid, like this error message suggests.<br><\/p>\n\n\n\n<p>These causes include:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Setting the wrong URL<\/li><li>Using 2FA on a GitHub account<\/li><\/ul>\n\n\n\n<p>Let\u2019s discuss these causes individually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cause #1: Setting the Wrong URL<\/h2>\n\n\n\n<p>We\u2019re going to clone one of our Git repositories using SSH. The repository is called career-karma-tutorials\/ck-git. This repository is private so we need to authenticate to clone the repository. We can clone the repository using the <a href=\"https:\/\/careerkarma.com\/blog\/git-clone\/\">git clone command<\/a>:<br><\/p>\n\n\n\n<p><code>git clone https:\/\/git@github.com:career-karma-tutorials\/ck-git.git<br><\/code><\/p>\n\n\n\n<p>We have used an SSH URL to authenticate with our server.<br><\/p>\n\n\n\n<p>Let\u2019s run our command and see what happens:<br><\/p>\n\n\n\n<p>Password for \u2018https:\/\/git@github.com\u2019:&nbsp;<\/p>\n\n\n\n<p>remote: Invalid username or password.<\/p>\n\n\n\n<p>fatal: Authentication failed for \u2018https:\/\/git@github.com\/career-karma-tutorials\/ck-git.git\/\u2019<br><\/p>\n\n\n\n<p>Our command does not run successfully. The issue is that we\u2019ve tried to authenticate using both HTTP and SSH authentication. This is clear if we look at the start of our URL:<br><\/p>\n\n\n\n<p><a href=\"https:\/\/git@github.com\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">https:\/\/git@github.com<\/a><\/p>\n\n\n\n<p>The HTTPS states we want to authenticate over the web. The git@github.com states we want to connect over SSH. When we run our command, Git tries to <a href=\"https:\/\/careerkarma.com\/blog\/what-is-http\/\">connect via HTTP<\/a> to the git@github.com server, which does not accept HTTP authentication.<br><\/p>\n\n\n\n<p>We can fix this error by using either HTTP or <a href=\"https:\/\/careerkarma.com\/blog\/ssh-command\/\">SSH authentication<\/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 (HTTP)\ngit clone git@github.com:career-karma-tutorials\/ck-git.git (SSH)\n<\/pre><\/div>\n\n\n\n<p>git clone https:\/\/github.com:career-karma-tutorials\/ck-git (HTTP)<\/p>\n\n\n\n<p>git clone git@github.com:career-karma-tutorials\/ck-git.git (SSH)<br><\/p>\n\n\n\n<p>In our case, we are using HTTPS authentication to access our repository, so we\u2019ll run the first command. Let\u2019s see what happens:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Cloning into 'ck-git'...\nremote: Enumerating objects: 6, done.\nremote: Counting objects: 100% (6\/6), done.\nremote: Compressing objects: 100% (2\/2), done.\nremote: Total 6 (delta 0), reused 3 (delta 0), pack-reused 0\nUnpacking objects: 100% (6\/6), done.\nOur repository is successfully cloned.\n<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Cause #2: Using 2FA on a GitHub Account<\/h2>\n\n\n\n<p>Once you have enabled 2 Factor Authentication (2FA) on GitHub, you cannot use your GitHub password on the command line. Instead, you have to use a personal access token.<br><\/p>\n\n\n\n<p>Personal access tokens are used to authenticate you for personal applications and on the command line. The command line does not tell us we need to generate a personal access token, which is why this solution is often overlooked by programmers.<br><\/p>\n\n\n\n<p>To <a href=\"https:\/\/docs.github.com\/en\/github\/authenticating-to-github\/creating-a-personal-access-token\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">generate a personal access token<\/a>, we need to open GitHub and do the following:<br><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Navigate to the \u201cSettings\u201d page<\/li><li>Click \u201cDeveloper settings\u201d in the sidebar<\/li><li>Click \u201cPersonal access tokens\u201d in the sidebar<\/li><li>Click \u201cGenerate new token\u201d<\/li><li>Fill in the form to create a new token<\/li><\/ol>\n\n\n\n<p>This will give us a token we can copy to the clipboard. This token is only visible once so you should take a note of your token.<br><\/p>\n\n\n\n<p>Once we have this token, we can use it as our password. We\u2019re going to use the HTTP URL we wrote earlier to access our repository:<br><\/p>\n\n\n\n<p>git clone https:\/\/github.com:career-karma-tutorials\/ck-git<br><\/p>\n\n\n\n<p>Git asks us to authenticate when we clone our repository:<br><\/p>\n\n\n\n<p>Username for \u2018https:\/\/github.com\u2019:<\/p>\n\n\n\n<p>Password for \u2018https:\/\/github.com\u2019:<br><\/p>\n\n\n\n<p>In the password field, we have pasted the personal access token we generated earlier. We are then authenticated and our repository is cloned to our local machine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cremote: invalid username or password\u201d error informs you that you have incorrectly authenticated to a Git server.<br><\/p>\n\n\n\n<p>To solve this error, make sure that you have used the right username and password and that you are trying to access a Git repository using the correct URL. If you have 2FA enabled, make sure you authenticate using a personal access token instead of your password.<br><\/p>\n","protected":false},"excerpt":{"rendered":"To access private remote repositories and modify remote repositories using the Git command line, you must be authenticated. If you try to access or modify a repository and enter the wrong authentication credentials, you\u2019ll encounter the remote: invalid username or password error. In this guide, we discuss the most common causes of this error. We\u2019ll&hellip;","protected":false},"author":240,"featured_media":23011,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23010","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 remote: invalid username or password Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git remote: invalid username or password 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-remote-invalid-username-or-password\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git remote: invalid username or password Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git remote: invalid username or password error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/\" \/>\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-21T13:35:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"666\" \/>\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-remote-invalid-username-or-password\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git remote: invalid username or password Solution\",\"datePublished\":\"2020-09-21T13:35:09+00:00\",\"dateModified\":\"2023-12-01T12:00:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/\"},\"wordCount\":729,\"commentCount\":2,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/\",\"name\":\"Git remote: invalid username or password Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg\",\"datePublished\":\"2020-09-21T13:35:09+00:00\",\"dateModified\":\"2023-12-01T12:00:15+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 remote: invalid username or password error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg\",\"width\":1000,\"height\":666},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#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 remote: invalid username or password 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 remote: invalid username or password Solution | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Git remote: invalid username or password 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-remote-invalid-username-or-password\/","og_locale":"en_US","og_type":"article","og_title":"Git remote: invalid username or password Solution","og_description":"On Career Karma, learn the cause of and the solution to the Git remote: invalid username or password error.","og_url":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-21T13:35:09+00:00","article_modified_time":"2023-12-01T12:00:15+00:00","og_image":[{"width":1000,"height":666,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-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-remote-invalid-username-or-password\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git remote: invalid username or password Solution","datePublished":"2020-09-21T13:35:09+00:00","dateModified":"2023-12-01T12:00:15+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/"},"wordCount":729,"commentCount":2,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/","url":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/","name":"Git remote: invalid username or password Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg","datePublished":"2020-09-21T13:35:09+00:00","dateModified":"2023-12-01T12:00:15+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 remote: invalid username or password error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/nihonorway-graphy-nCvi-gS5r88-unsplash.jpg","width":1000,"height":666},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-remote-invalid-username-or-password\/#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 remote: invalid username or password 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\/23010","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=23010"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23010\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/23011"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23010"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23010"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}