{"id":19322,"date":"2015-05-04T14:56:45","date_gmt":"2015-05-04T09:26:45","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=19322"},"modified":"2015-06-04T17:13:55","modified_gmt":"2015-06-04T11:43:55","slug":"creating-user-profile-in-aem","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/","title":{"rendered":"Creating User Profile in AEM"},"content":{"rendered":"<p><span style=\"font-size: large\">Hello everyone,<\/span><\/p>\n<p><span style=\"font-size: large\">In this blog, we will be focusing on how to create a user and\u00a0user profiles in AEM. \u00a0It is generally needed when we create\u00a0login and signup forms. <\/span><\/p>\n<p><span style=\"font-size: large\">Depending on the use case, users can be created using:<\/span><\/p>\n<p><span style=\"font-size: large\"> i) In the UserManager API ,we can create a user, password under a specific group and provide permissions to them. <\/span><\/p>\n<p><span style=\"font-size: large\">Sample code for UserManager API<\/span><\/p>\n<p>[java]<br \/>\nResourceResolver resolver=request.getResourceResolver();<br \/>\nSession session=request.getResourceResolver().adaptTo(Session.class);<br \/>\nUserManager userManager = resolver.adaptTo(UserManager.class);<br \/>\nGroup group=userManager.createGroup(&quot; Group Name&quot;);<br \/>\nUser user=userManager.createUser(&quot;username&quot;,\u201dpwd\u201d);<br \/>\nif (! userManager.isAutoSave()) {<br \/>\n  session.save();<br \/>\n}<br \/>\n[\/java]<\/p>\n<p><span style=\"font-size: large\">ii) The other case is when you have to create a profile for user like username, password, group, email, address, contact etc. For this purpose AccountManager API can be used.<\/span><\/p>\n<p><span style=\"font-size: large\">Sample Code for AccountManager API:<\/span><code><br \/>\n<\/code><\/p>\n<p>[java]<br \/>\nAccountManagerFactory accountManagerFactory;<br \/>\n@Reference<br \/>\nprivate ResourceResolverFactory resolverFactory;<br \/>\n@Override<br \/>\nMap&lt;String, Object&gt; serviceParams = new HashMap&lt;String, Object&gt;();<br \/>\nserviceParams.put(SUBSERVICE, &quot;signUpService&quot;);<br \/>\nResourceResolverresolver=resolverFactory.getServiceResourceResolver(serviceParams)<br \/>\nSession session = resolver.adaptTo(Session.class);<br \/>\nAccountManager accountManager = accountManagerFactory.createAccountManager(session);<br \/>\nMap&lt;String,RequestParameter[]&gt; profilemap = new HashMap&lt;&gt;();<br \/>\naccountManager.getOrCreateAccount(\u201cuserName\u201d, \u201cpassword\u201d, &quot;admin&quot;, profilemap);<\/p>\n<p>[\/java]<\/p>\n<p>The Map can be populated in two ways:<\/p>\n<p><span style=\"font-size: large\">a) If the value of the profile property is coming from form <\/span><br \/>\n<code><br \/>\n<\/code><\/p>\n<p>[java] profilemap.put(&quot;email&quot;, request.getRequestParameters(&quot;email&quot;)); [\/java]<\/p>\n<p>\/\/like email we can add additional attributes in profile<\/p>\n<p><span style=\"font-size: large\">b) If the property is not in RequestParameters then&#8212;&#8211;<\/span><br \/>\n<code><br \/>\n<\/code><\/p>\n<p>[java] String email=\u201dshivanig@intelligrape.com\u201d;<br \/>\nprofilemap.put(\u201cemail\u201d,new RequestParameter[]{new Parameters(email) }); [\/java]<\/p>\n<p>\/\/Create a POJO class to set values of additional attribute&#8212;-<br \/>\n<code><br \/>\n<\/code><\/p>\n<p>[java]final class Parameters implements RequestParameter {<br \/>\nprivate final String parameter;<br \/>\nprivate Parameters(String parameter)<br \/>\n  {<br \/>\n     this.parameter = parameter;<br \/>\n  }}<br \/>\n[\/java]<\/p>\n<p><code>\u00a0 <\/code><\/p>\n<p>If you want to see your created Users,Go to Crxde , \/home\/Users &#8230;&#8230;..You can see your users and profiles also.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/blog.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19408\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/blog.png\" alt=\"blog\" width=\"930\" height=\"250\" \/><\/a><br \/>\nSo here you see how you can create users in AEM and create profiles for them.<\/p>\n<p>Regards: Shivani Garg<!--more--><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello everyone, In this blog, we will be focusing on how to create a user and\u00a0user profiles in AEM. \u00a0It is generally needed when we create\u00a0login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and [&hellip;]<\/p>\n","protected":false},"author":190,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":66,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-19322","post","type-post","status-publish","format-standard","hentry","category-technology"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Shivani Garg\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/\" \/>\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=\"Creating User Profile in AEM | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/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=\"Creating User Profile in AEM | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/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\\\/creating-user-profile-in-aem\\\/#article\",\"name\":\"Creating User Profile in AEM | TO THE NEW Blog\",\"headline\":\"Creating User Profile in AEM\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shivani-garg\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/05\\\/blog.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#articleImage\"},\"datePublished\":\"2015-05-04T14:56:45+05:30\",\"dateModified\":\"2015-06-04T17:13:55+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":6,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#webpage\"},\"articleSection\":\"Technology\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#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\\\/creating-user-profile-in-aem\\\/#listItem\",\"name\":\"Creating User Profile in AEM\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#listItem\",\"position\":3,\"name\":\"Creating User Profile in AEM\",\"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\\\/shivani-garg\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shivani-garg\\\/\",\"name\":\"Shivani Garg\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0ebd75c6a7b8f16b724394279632b6e36009bd8e8d0d55ebc5906c4c4d1fe9cc?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Shivani Garg\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/\",\"name\":\"Creating User Profile in AEM | TO THE NEW Blog\",\"description\":\"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/creating-user-profile-in-aem\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shivani-garg\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/shivani-garg\\\/#author\"},\"datePublished\":\"2015-05-04T14:56:45+05:30\",\"dateModified\":\"2015-06-04T17:13:55+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":"Creating User Profile in AEM | TO THE NEW Blog","description":"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and","canonical_url":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#article","name":"Creating User Profile in AEM | TO THE NEW Blog","headline":"Creating User Profile in AEM","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/shivani-garg\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/blog.png","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#articleImage"},"datePublished":"2015-05-04T14:56:45+05:30","dateModified":"2015-06-04T17:13:55+05:30","inLanguage":"en-US","commentCount":6,"mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#webpage"},"articleSection":"Technology"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.today\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#listItem","name":"Creating User Profile in AEM"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#listItem","position":3,"name":"Creating User Profile in AEM","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/shivani-garg\/#author","url":"https:\/\/2thenew.today\/blog\/author\/shivani-garg\/","name":"Shivani Garg","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0ebd75c6a7b8f16b724394279632b6e36009bd8e8d0d55ebc5906c4c4d1fe9cc?s=96&d=mm&r=g","width":96,"height":96,"caption":"Shivani Garg"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#webpage","url":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/","name":"Creating User Profile in AEM | TO THE NEW Blog","description":"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/shivani-garg\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/shivani-garg\/#author"},"datePublished":"2015-05-04T14:56:45+05:30","dateModified":"2015-06-04T17:13:55+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Creating User Profile in AEM | TO THE NEW Blog","og:description":"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and","og:url":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Creating User Profile in AEM | TO THE NEW Blog","twitter:description":"Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM. It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"19322","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 12:09:45","updated":"2024-02-29 08:22:32","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.today\/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.today\/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\tCreating User Profile in AEM\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Technology","link":"https:\/\/2thenew.today\/blog\/category\/technology\/"},{"label":"Creating User Profile in AEM","link":"https:\/\/2thenew.today\/blog\/creating-user-profile-in-aem\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/19322","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/190"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=19322"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/19322\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=19322"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=19322"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=19322"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}