{"id":5183,"date":"2021-10-21T04:29:33","date_gmt":"2021-10-21T04:29:33","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=5183"},"modified":"2021-10-21T06:46:25","modified_gmt":"2021-10-21T06:46:25","slug":"setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/","title":{"rendered":"Setup for Salesforce CLI and making VS code authorization of an Org through CLI in Linux"},"content":{"rendered":"<p>To set up a Salesforce organization on Visual Studio code at the Linux platform, firstly you need to download the TAR file of the Salesforce CLI (sfdxcli).<\/p>\n<p>The <strong>Salesforce CLI<\/strong> is a set of commands and a powerful command-line tool that helps in simplifying development and automating the building process when working with your organization. It helps in synchronizing source code between organizations and source <a href=\"https:\/\/studysection.com\/blog\/working-with-git-on-local-repositories\/\">repositories<\/a>.<\/p>\n<h2>Download Salesforce CLI &#8211;<\/h2>\n<p>To download the Salesforce CLI sfdx in your system use the following link.<br \/>\n<a href=\"https:\/\/developer.salesforce.com\/tools\/sfdxcli\">https:\/\/developer.salesforce.com\/tools\/sfdxcli<\/a><\/p>\n<ul>\n<li>Go to the link and download the Linux version TAR file to your system.<\/li>\n<li>After downloading the sfdx tar file, go to the terminal and make a directory with the help of the command<br \/>\n<strong>mkdir ~\/sfdx<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli.png\" alt=\"sf-cli\"\/>\n<\/li>\n<li>Then locate your downloaded TAR file and unzip it with the command<br \/>\n<strong>tar xJf Downloads\/sfdx-linux-x64.tar.xz -C ~\/sfdx &#8211;strip-components 1<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli1.png\" alt=\"sf-cli1\"\/>\n<\/li>\n<li>Now update your PATH environment variable for the current terminal session.<br \/>\n<strong>export PATH=~\/sfdx\/bin:$PATH<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli2.png\" alt=\"sf-cli2\"\/>\n<\/li>\n<li>Use the sfdx command to check if the sfdx is installed correctly or not. Simply write sfdx and enter.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli3.png\" alt=\"sf-cli3\"\/>\n<\/li>\n<li>If salesforce CLI is successfully installed then you will get this output on the screen.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli4.png\" alt=\"sf-cli4\"\/>\n<\/li>\n<\/ul>\n<p>You can do the same steps for installing the Salesforce CLI through <strong>VS code terminal<\/strong>.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli5.png\" alt=\"sf-cli5\"\/><\/p>\n<p><strong><em>Note:-<\/em><\/strong> You have to set the PATH environment variable every time you open the VS code after closing it properly. The sfdx commands will only run if the path is set. So repeat the environment setting step whenever you open the VS code.<\/p>\n<p>As your Salesforce CLI is successfully working so now we need to create a project in the VS code and authorize an Org to retrieve\/ deploy your code.<\/p>\n<h3>Steps to create a project<\/h3>\n<ul>\n<li>Using the Command Palette, you can create a project. Press Ctrl+Shift+P to open the Command Palette and type Project<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli6.png\" alt=\"Salesforce CLI 6\"\/>\n<\/li>\n<li>Click Enter and you will see an option to select which type of project template you want to use, Choose Standard for now.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli7.png\" alt=\"Salesforce CLI 7\"\/>\n<\/li>\n<li>Now it will open the option to enter the Project name, so enter your project name accordingly and click enter.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli8.png\" alt=\"Salesforce CLI 8\"\/>\n<\/li>\n<\/ul>\n<p>Now your VS Code project has been successfully created.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli9.png\" alt=\"Salesforce CLI 9\"\/><\/p>\n<p>As your project is created successfully. So now we need to connect our VS Code project folder to Organization.<\/p>\n<h3>Authorize an Organization through Command Line<\/h3>\n<p>Use the sfdx commands to authorize an organization through VS code.<br \/>\n<strong>sfdx force:auth:web:login -a <em>&lt;Your Organization URL><\/em><\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli10.png\" alt=\"Salesforce CLI 10\"\/><\/br><br \/>\nUse -a in your auth command to login to the default login page of Salesforce.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli11.png\" alt=\"sf-cli11\" \/><\/br><\/p>\n<p>Use -r in your auth command if you want to login to your custom URL.<br \/>\n<strong>sfdx force:auth:web:login -r <em>&lt;Your Custom Organization URL><\/em><\/strong><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli12.png\" alt=\"sf-cli12\"\/><\/br><br \/>\nBy using -r in the command, the browser will open the login page of your custom URL passed after it.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli13.png\" alt=\"sf-cli13\"\/><\/p>\n<p>By login into it, you will receive a message in the terminal of successfully authorized to use the organization.<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli14.png\" alt=\"sf-cli14\" \/><\/br><br \/>\nTo view all lists of organizations connected through your VS code. Use force:org:list command.<br \/>\n<strong><em>sfdx force:org:list<\/em><\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/sf-cli15.png\" alt=\"sf-cli15\"\/><\/p>\n<p><small><em>jQuery presents a tree-like structure of all the elements on a webpage simplifying the syntax and further manipulating such elements. The <a href=\"https:\/\/www.studysection.com\/jquery-3.x-advanced\">jQuery Certification exam<\/a> by StudySection will secure your fundamental knowledge and a basic understanding of jQuery as an asset to improve your skills.<\/em><\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>To set up a Salesforce organization on Visual Studio code at the Linux platform, firstly you need to download the<\/p>\n","protected":false},"author":1,"featured_media":5184,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[31,726],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Setup for Salesforce CLI authorization of an Org through CLI in Linux<\/title>\n<meta name=\"description\" content=\"To set up a Salesforce organization on Visual Studio code at the Linux, firstly you need to download the TAR file of the Salesforce CLI.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setup for Salesforce CLI authorization of an Org through CLI in Linux\" \/>\n<meta property=\"og:description\" content=\"To set up a Salesforce organization on Visual Studio code at the Linux, firstly you need to download the TAR file of the Salesforce CLI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-21T04:29:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-21T06:46:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/Salesforce-CLI.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\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:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"Setup for Salesforce CLI and making VS code authorization of an Org through CLI in Linux\",\"datePublished\":\"2021-10-21T04:29:33+00:00\",\"dateModified\":\"2021-10-21T06:46:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\"},\"wordCount\":567,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"linux\",\"VS code\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\",\"url\":\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\",\"name\":\"Setup for Salesforce CLI authorization of an Org through CLI in Linux\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2021-10-21T04:29:33+00:00\",\"dateModified\":\"2021-10-21T06:46:25+00:00\",\"description\":\"To set up a Salesforce organization on Visual Studio code at the Linux, firstly you need to download the TAR file of the Salesforce CLI.\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setup for Salesforce CLI and making VS code authorization of an Org through CLI in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setup for Salesforce CLI authorization of an Org through CLI in Linux","description":"To set up a Salesforce organization on Visual Studio code at the Linux, firstly you need to download the TAR file of the Salesforce CLI.","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:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Setup for Salesforce CLI authorization of an Org through CLI in Linux","og_description":"To set up a Salesforce organization on Visual Studio code at the Linux, firstly you need to download the TAR file of the Salesforce CLI.","og_url":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2021-10-21T04:29:33+00:00","article_modified_time":"2021-10-21T06:46:25+00:00","og_image":[{"width":300,"height":200,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/Salesforce-CLI.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"Setup for Salesforce CLI and making VS code authorization of an Org through CLI in Linux","datePublished":"2021-10-21T04:29:33+00:00","dateModified":"2021-10-21T06:46:25+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/"},"wordCount":567,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["linux","VS code"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/","url":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/","name":"Setup for Salesforce CLI authorization of an Org through CLI in Linux","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2021-10-21T04:29:33+00:00","dateModified":"2021-10-21T06:46:25+00:00","description":"To set up a Salesforce organization on Visual Studio code at the Linux, firstly you need to download the TAR file of the Salesforce CLI.","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/setup-for-salesforce-cli-and-making-vs-code-authorization-of-an-org-through-cli-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Setup for Salesforce CLI and making VS code authorization of an Org through CLI in Linux"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":16859,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/5183"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=5183"}],"version-history":[{"count":3,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/5183\/revisions"}],"predecessor-version":[{"id":5203,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/5183\/revisions\/5203"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/5184"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=5183"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=5183"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=5183"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}