{"id":22379,"date":"2015-07-02T23:21:14","date_gmt":"2015-07-02T17:51:14","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=22379"},"modified":"2017-08-03T13:19:23","modified_gmt":"2017-08-03T07:49:23","slug":"manually-bootstrapping-an-angularjs-application","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/","title":{"rendered":"Manually Bootstrapping an AngularJS Application"},"content":{"rendered":"<p>We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the <a title=\"Building Intuitive Frontend Interfaces with AngularJS\" href=\"https:\/\/2thenew.xyz\/blog\/building-intuitive-frontend-interfaces-with-angularjs\/\">angular on the front end<\/a>, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application from some other social login sites(Facebook, twitter, etc).<\/p>\n<p>The reason that we need to make changes before bootstrapping the Angular on the front-end is that, these social login sites append few characters to the redirecting urls such as the one below :<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n&lt;www.domain.com&gt;\/app#<br \/>\n&lt;www.domain.com&gt;\/app\/#_=_<br \/>\n&lt;www.domain.com&gt;\/app#\/<br \/>\n[\/code]<\/p>\n<p>So, we need to remove these extra appended characters from the url, before starting up the application on the font-end. As it may cause ambiguity for the angular route provider to serve the correct route.<\/p>\n<p>Now we have to remove these appended characters before bootstrapping up the angular application. You can achieve it by following these 2 simple steps:<\/p>\n<p><strong>Step 1:<\/strong> Initialize the Angular on the front-end.<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\nvar app = angular.module(&#8216;myApp&#8217;, []);<br \/>\n[\/code]<\/p>\n<p><strong>Step 2:<\/strong> Once the document gets ready, perform your required customization task. And when you are done with all the changes, then you can bootstrap the angular.<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\nangular.bootstrap(document, [&quot;myApp&quot;]);<br \/>\n[\/code]<\/p>\n<p>This will <a title=\"Angular Development\" href=\"https:\/\/2thenew.xyz\/front-end-angularjs-development\">setup the angular application<\/a> onto the front-end.<\/p>\n<p>So, the sample code for the above mentioned use case will some what look like this:<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\nangular.element(document).ready(function() {<br \/>\n\tif (window.location.hash === &#8216;#\/&#8217; || window.location.hash === &#8216;#_=_&#8217;) {<br \/>\n\t\twindow.location.href = window.location.origin + &#8216;\/&#8217;;<br \/>\n\t} else if (window.location.href[window.location.href.length &#8211; 1] === &#8216;#&#8217;) {<br \/>\n\t\twindow.location.href = window.location.origin + &#8216;\/&#8217;;<br \/>\n\t} else {<br \/>\n\t\t\/\/Then init the app<br \/>\n\t\tangular.bootstrap(document, [&quot;myApp&quot;]);<br \/>\n\t}<br \/>\n});<br \/>\n[\/code]<\/p>\n<p>It gives you the power, to setup the ground before you kick start your Angular on front-end. There are many more things that you can perform by this method of bootstrapping the Angular application.<\/p>\n<p>Hope this helps!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application [&hellip;]<\/p>\n","protected":false},"author":99,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":2,"footnotes":""},"categories":[1439,3429,1],"tags":[3955,955,4697,55],"class_list":["post-22379","post","type-post","status-publish","format-standard","hentry","category-angular","category-front-end-development","category-technology","tag-angular-development","tag-angularjs","tag-angularjs-development-company","tag-javascript"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vibhor Kukreja\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"angularjs\" \/>\n\t\t<meta property=\"article:tag\" content=\"front end development\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"angular development\" \/>\n\t\t<meta property=\"article:tag\" content=\"angularjs development company\" \/>\n\t\t<meta property=\"article:tag\" content=\"javascript\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-07-02T17:51:14+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-08-03T07:49:23+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#article\",\"name\":\"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog\",\"headline\":\"Manually Bootstrapping an AngularJS Application\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-07-02T23:21:14+05:30\",\"dateModified\":\"2017-08-03T13:19:23+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#webpage\"},\"articleSection\":\"AngularJS, Front End Development, Technology, angular development, AngularJS, AngularJS Development Company, javascript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#listItem\",\"name\":\"Manually Bootstrapping an AngularJS Application\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#listItem\",\"position\":3,\"name\":\"Manually Bootstrapping an AngularJS Application\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/\",\"name\":\"Vibhor Kukreja\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b6f356c071a634e6360accc831ed76faed3f121165a8952666c71c81773cbc48?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vibhor Kukreja\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/\",\"name\":\"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog\",\"description\":\"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/manually-bootstrapping-an-angularjs-application\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\"},\"datePublished\":\"2015-07-02T23:21:14+05:30\",\"dateModified\":\"2017-08-03T13:19:23+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog","description":"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application","canonical_url":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#article","name":"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog","headline":"Manually Bootstrapping an AngularJS Application","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vibhor-kukreja\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2015-07-02T23:21:14+05:30","dateModified":"2017-08-03T13:19:23+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#webpage"},"articleSection":"AngularJS, Front End Development, Technology, angular development, AngularJS, AngularJS Development Company, javascript"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#listItem","name":"Manually Bootstrapping an AngularJS Application"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#listItem","position":3,"name":"Manually Bootstrapping an AngularJS Application","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/vibhor-kukreja\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/vibhor-kukreja\/","name":"Vibhor Kukreja","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/b6f356c071a634e6360accc831ed76faed3f121165a8952666c71c81773cbc48?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vibhor Kukreja"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/","name":"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog","description":"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vibhor-kukreja\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vibhor-kukreja\/#author"},"datePublished":"2015-07-02T23:21:14+05:30","dateModified":"2017-08-03T13:19:23+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog","og:description":"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application","og:url":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":{"0":"angularjs","1":"front end development","2":"technology","3":"angular development","5":"angularjs development company","6":"javascript"},"article:published_time":"2015-07-02T17:51:14+00:00","article:modified_time":"2017-08-03T07:49:23+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Manually Bootstrapping an AngularJS Application | TO THE NEW Blog","twitter:description":"We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"22379","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 07:14:02","updated":"2024-02-29 09:12:44","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tManually Bootstrapping an AngularJS Application\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Manually Bootstrapping an AngularJS Application","link":"https:\/\/2thenew.xyz\/blog\/manually-bootstrapping-an-angularjs-application\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/22379","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/99"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=22379"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/22379\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=22379"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=22379"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=22379"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}