{"id":92292,"date":"2017-08-04T12:20:04","date_gmt":"2017-08-04T12:20:04","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=92292"},"modified":"2017-08-04T12:20:04","modified_gmt":"2017-08-04T12:20:04","slug":"navigating-within-lightning-components","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/","title":{"rendered":"How to Navigate within Lightning Components"},"content":{"rendered":"<p>In this blog, we will learn how to navigate within Lightning Components. Let&#8217;s get started!<\/p>\n<div class=\"panel panel-default\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Event Used<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>We will be using <strong>force:navigateToComponent.<\/strong> It allows us to navigate from one component to another. Still, we should keep following points in mind:<\/p>\n<ul>\n<li>Through this event we can only navigate to Components.<\/li>\n<li>The <strong>access<\/strong> of the component should be set to <strong>global.<\/strong><\/li>\n<li>It will not work in app.app, the navigation will only work within tab.<\/li>\n<li>Also, the URL generated through this event is not permanent, it keeps on changing as we navigate.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Navigating within Lightning Components<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>Now, let&#8217;s get started with the code.<\/p>\n<p><strong>Component 1 :<\/strong><\/p>\n<pre class=\"brush:xml\">&lt;aura:component implements=\"force:appHostable\" access=\"global\" &gt;\r\n\t&lt;!-- \r\n        \/**\r\n         * Webkul Software.\r\n         *\r\n         * @category  Webkul\r\n         * @author    Webkul\r\n         * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n         * @license   https:\/\/store.webkul.com\/license.html\r\n         *\/\r\n     --&gt;\r\n    &lt;pre&gt;\r\n\t\tHello! &lt;br\/&gt;\t\t \r\n\t\tThis is Component 1&lt;br\/&gt;\t \r\n\t&lt;\/pre&gt;\t \r\n\t \r\n\t&lt;lightning:button variant=\"brand\" label=\"Go to Component 2\" onclick=\"{!c.NavigatetoC2}\" \/&gt; \r\n&lt;\/aura:component&gt;<\/pre>\n<p><strong>Component 1 controller :<\/strong><\/p>\n<pre class=\"brush:js\">({\r\n  \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category  Webkul\r\n    * @author    Webkul\r\n    * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n    * @license   https:\/\/store.webkul.com\/license.html\r\n    *\/\r\n\tNavigatetoC2 : function(component, event, helper) {\r\n\t\t\r\n\t\tconsole.log('Enter Here');\r\n        var evt = $A.get(\"e.force:navigateToComponent\");\r\n        console.log('evt'+evt);\r\n        evt.setParams({\r\n            componentDef: \"c:Component2\"\r\n            \/\/componentAttributes :{ }\r\n        });\r\n       \r\n        evt.fire();\r\n\t}\r\n})<\/pre>\n<p><strong>Controller 2:<\/strong><\/p>\n<pre class=\"brush:xml\">&lt;aura:component implements=\"force:appHostable\" access=\"global\" &gt;\r\n\t&lt;!-- \r\n        \/**\r\n         * Webkul Software.\r\n         *\r\n         * @category  Webkul\r\n         * @author    Webkul\r\n         * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n         * @license   https:\/\/store.webkul.com\/license.html\r\n         *\/\r\n     --&gt;\r\n    &lt;pre&gt;\r\n\t\tHello! &lt;br\/&gt;\t\t \r\n\t\tThis is Component 2&lt;br\/&gt;\t \r\n\t&lt;\/pre&gt;\t \r\n\t&lt;lightning:button variant=\"brand\" label=\"Go to Component 1\" onclick=\"{!c.NavigatetoC1}\" \/&gt;\r\n \r\n&lt;\/aura:component&gt;<\/pre>\n<p><strong>Component 2 controller :<\/strong><\/p>\n<pre class=\"brush:js\">({\r\n  \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category  Webkul\r\n    * @author    Webkul\r\n    * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n    * @license   https:\/\/store.webkul.com\/license.html\r\n    *\/\r\n\tNavigatetoC1 : function(component, event, helper) {\r\n\t\tvar evt = $A.get(\"e.force:navigateToComponent\");\r\n\t\tevt.setParams({\r\n\t\t\tcomponentDef : \"c:Component1\"\r\n\t\t\t\/\/componentAttributes: {}\r\n\t\t});\r\n\t\tevt.fire();\r\n\t}\r\n})<\/pre>\n<\/div>\n<\/div>\n<div class=\"panel panel-success\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Output<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>For output, you have to <strong>create a Lightning Tab<\/strong> using one of the components, and add it to an app through <strong>App Manager<\/strong>.<\/p>\n<p><strong>Component 1:<\/strong><br \/>\n<a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output1.png\"><img decoding=\"async\" class=\"alignnone wp-image-92358 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output1.png\" alt=\"\" width=\"741\" height=\"307\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output1.png 741w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output1-250x104.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output1-300x124.png 300w\" sizes=\"(max-width: 741px) 100vw, 741px\" loading=\"lazy\" \/><\/a><\/p>\n<p><strong>Component 2:<\/strong><br \/>\n<a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output2.png\"><img decoding=\"async\" class=\"alignnone wp-image-92359 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output2.png\" alt=\"\" width=\"784\" height=\"294\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output2.png 784w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output2-250x94.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output2-300x113.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/output2-768x288.png 768w\" sizes=\"(max-width: 784px) 100vw, 784px\" loading=\"lazy\" \/><\/a><\/p>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\"><i class=\"fa fa-user\"><\/i>Support<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>That\u2019s all for how to navigate within Lightning Components, still, if you have any issue feel free to add a ticket and let us know your views to make the code better <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\"> https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/p>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will learn how to navigate within Lightning Components. Let&#8217;s get started! Event Used We will be using force:navigateToComponent. It allows us to navigate from one component to another. Still, we should keep following points in mind: Through this event we can only navigate to Components. The access of the component should <a href=\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":104,"featured_media":92367,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3554,1887],"tags":[5234],"class_list":["post-92292","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-lightning-development","category-salesforce","tag-navigate-within-lightning-components"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>navigate within Lightning Components<\/title>\n<meta name=\"description\" content=\"In this blog, we will learn how to navigate within Lightning Components. Let&#039;s get started!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"navigate within Lightning Components\" \/>\n<meta property=\"og:description\" content=\"In this blog, we will learn how to navigate within Lightning Components. Let&#039;s get started!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-08-04T12:20:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aakanksha Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aakanksha Singh\" \/>\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\",\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\"},\"author\":{\"name\":\"Aakanksha Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\"},\"headline\":\"How to Navigate within Lightning Components\",\"datePublished\":\"2017-08-04T12:20:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\"},\"wordCount\":182,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png\",\"keywords\":[\"navigate within lightning components\"],\"articleSection\":[\"Lightning Development\",\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\",\"url\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\",\"name\":\"navigate within Lightning Components\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png\",\"datePublished\":\"2017-08-04T12:20:04+00:00\",\"description\":\"In this blog, we will learn how to navigate within Lightning Components. Let's get started!\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Navigate within Lightning Components\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\",\"name\":\"Aakanksha Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Aakanksha Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"navigate within Lightning Components","description":"In this blog, we will learn how to navigate within Lightning Components. Let's get started!","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:\/\/webkul.com\/blog\/navigating-within-lightning-components\/","og_locale":"en_US","og_type":"article","og_title":"navigate within Lightning Components","og_description":"In this blog, we will learn how to navigate within Lightning Components. Let's get started!","og_url":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-08-04T12:20:04+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png","type":"image\/png"}],"author":"Aakanksha Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Aakanksha Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/"},"author":{"name":"Aakanksha Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80"},"headline":"How to Navigate within Lightning Components","datePublished":"2017-08-04T12:20:04+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/"},"wordCount":182,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png","keywords":["navigate within lightning components"],"articleSection":["Lightning Development","Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/","url":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/","name":"navigate within Lightning Components","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png","datePublished":"2017-08-04T12:20:04+00:00","description":"In this blog, we will learn how to navigate within Lightning Components. Let's get started!","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/08\/webkulNAV.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/navigating-within-lightning-components\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Navigate within Lightning Components"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80","name":"Aakanksha Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Aakanksha Singh"},"url":"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/92292","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=92292"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/92292\/revisions"}],"predecessor-version":[{"id":92368,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/92292\/revisions\/92368"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/92367"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=92292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=92292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=92292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}