{"id":1653,"date":"2010-09-14T13:14:52","date_gmt":"2010-09-14T07:44:52","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=1653"},"modified":"2010-09-14T13:14:52","modified_gmt":"2010-09-14T07:44:52","slug":"grails-specific-locale-handling-change-language-and-return-to-the-same-page","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/","title":{"rendered":"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page"},"content":{"rendered":"<p>It&#8217;s common requirement  when we work on some portal &#8211; we need to provide support for various languages.<br \/>\nmessages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning &#8211; <\/p>\n<h2 style=\"font-size:14px;\">how to switch to a different language taking an advantage of GRAILS<\/h2>\n<p>On your view (gsp) page add following &#8211; <\/p>\n<pre lang=\"gsp\">\r\n<%\r\nString targetUri = (request.forwardURI - request.contextPath);\r\n%>\r\n <g:link controller=\"lang\" action=\"lang\" params=\"[lang: 'en', targetUri: targetUri]\">English<\/g:link>\r\n <g:link controller=\"lang\" action=\"lang\" params=\"[lang: 'fr', targetUri: targetUri]\">French<\/g:link>\r\n <g:link controller=\"lang\" action=\"lang\" params=\"[lang: 'es', targetUri: targetUri]\">Spanish<\/g:link>\r\n.....\r\n.....\r\n<\/pre>\n<p>I just wanted to give you a rough idea. But you can create a custom tag for this &#8211; depending upon your requirement.<\/p>\n<p>Now the trick here is to send parameter with name &#8220;lang&#8221;. And GRAILS automatically recognizes it and set locale itself.<br \/>\nFollowing is the code at server side (controller\/action).<\/p>\n<blockquote>\n<pre lang=\"groovy\">\r\n\/\/import org.springframework.context.i18n.LocaleContextHolder\r\n\/\/import org.springframework.web.servlet.support.RequestContextUtils as RCU;\r\n\r\nclass LangController {\r\ndef lang = {\r\n       String targetUri = params.targetUri ? params.targetUri : \"\/\"\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ String language = params.lang ? params.lang : 'en'\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ LocaleContextHolder.setLocale(new Locale(language))\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ RCU.getLocaleResolver(request).setLocale(request, response, new Locale(language))\r\n       redirect(uri: targetUri)\r\n}\r\n}\r\n<\/pre>\n<\/blockquote>\n<p>If you notice above, I have commented out few lines (with the help of grails internal implementation, we need to do nothing explicitly to switch to a different language). <\/p>\n<p>So in <strong>SINGLE LINE:<\/strong><\/p>\n<pre lang=\"html\">\r\nBase URL: http:\/\/example.com\/cont\/act\/id  <!--Grails will use \"messages.properties\" now -->\r\nLocale specific URL: http:\/\/example.com\/cont\/act\/id?lang=fr <!--Grails will use \"messages_fr.properties\" now -->\r\n<\/pre>\n<p>Hope it helps!<br \/>\n\ufeffSalil Kalia<\/p>\n","protected":false},"excerpt":{"rendered":"<p>It&#8217;s common requirement when we work on some portal &#8211; we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning &#8211; how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following &#8211; English French [&hellip;]<\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":8,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-1653","post","type-post","status-publish","format-standard","hentry","category-grails"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"It&#039;s common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Salil\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/\" \/>\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=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"It&#039;s common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\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=\"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"It&#039;s common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/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\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#article\",\"name\":\"GRAILS specific LOCALE Handling \\u2013 Change Language and return to the same page | TO THE NEW Blog\",\"headline\":\"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2010-09-14T13:14:52+05:30\",\"dateModified\":\"2010-09-14T13:14:52+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#webpage\"},\"articleSection\":\"Grails\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#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\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#listItem\",\"name\":\"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#listItem\",\"position\":3,\"name\":\"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@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\\\/salil\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/\",\"name\":\"Salil\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/97e216cba95b296d5909ad7b93d1c338d0fdad7b95410c9412b126a90f4735d9?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Salil\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/\",\"name\":\"GRAILS specific LOCALE Handling \\u2013 Change Language and return to the same page | TO THE NEW Blog\",\"description\":\"It's common requirement when we work on some portal - we need to provide support for various languages. messages.properties\\\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"datePublished\":\"2010-09-14T13:14:52+05:30\",\"dateModified\":\"2010-09-14T13:14:52+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":"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog","description":"It's common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French","canonical_url":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#article","name":"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog","headline":"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2010-09-14T13:14:52+05:30","dateModified":"2010-09-14T13:14:52+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#webpage"},"articleSection":"Grails"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.online\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#listItem","name":"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#listItem","position":3,"name":"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author","url":"https:\/\/2thenew.online\/blog\/author\/salil\/","name":"Salil","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/97e216cba95b296d5909ad7b93d1c338d0fdad7b95410c9412b126a90f4735d9?s=96&d=mm&r=g","width":96,"height":96,"caption":"Salil"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#webpage","url":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/","name":"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog","description":"It's common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author"},"datePublished":"2010-09-14T13:14:52+05:30","dateModified":"2010-09-14T13:14:52+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog","og:description":"It's common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French","og:url":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"GRAILS specific LOCALE Handling \u2013 Change Language and return to the same page | TO THE NEW Blog","twitter:description":"It's common requirement when we work on some portal - we need to provide support for various languages. messages.properties\/ResourceBundle is out of the scope of this post. Here I am just mentioning - how to switch to a different language taking an advantage of GRAILS On your view (gsp) page add following - English French","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"1653","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","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":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","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-29 16:21:31","updated":"2024-02-29 09:27:24","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.online\/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.online\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGRAILS specific LOCALE Handling \u2013 Change Language and return to the same page\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Grails","link":"https:\/\/2thenew.online\/blog\/category\/grails\/"},{"label":"GRAILS specific LOCALE Handling &#8211; Change Language and return to the same page","link":"https:\/\/2thenew.online\/blog\/grails-specific-locale-handling-change-language-and-return-to-the-same-page\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/1653","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=1653"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/1653\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=1653"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=1653"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=1653"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}