{"id":1897,"date":"2010-06-16T10:21:32","date_gmt":"2010-06-16T14:21:32","guid":{"rendered":"http:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/"},"modified":"2011-01-27T05:41:06","modified_gmt":"2011-01-27T09:41:06","slug":"lost-password-management-using-oracle-access-manager","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/","title":{"rendered":"Forgot password management using Oracle Access Manager"},"content":{"rendered":"<p>Hi all,<\/p>\n<p>Today I have implemented Lost Password Management using Oracle Access Manager 10.1.4.3.\u00a0 The infrastructure I have is OAM 10.1.4.3, Sun DS 5.2 as User store and Policy Store.<\/p>\n<p>There is a web application deployed in OHS 11g protected with Form based authentication.\u00a0 When we install OHS 11g webgate, a folder \/oamsso gets created under WebGate\/oblix location. This folder has login.html with Forgot Password button given. If you dont have such login file, then you can add the below code in your custom login file.<\/p>\n<p>&lt;script content=&#8221;text\/javascript&#8221; language=&#8221;JavaScript&#8221; &gt;<\/p>\n<p>function lostPassword()<br \/>\n{<br \/>\nvar elements = document.forms[0].elements;<br \/>\nname = &#8220;&#8221;;<br \/>\nfor (i=0; i&lt;elements.length; i++)<br \/>\n{<br \/>\nname = &#8220;&#8221;+ elements[i].name;<br \/>\nif (name == &#8220;userid&#8221;)<br \/>\n{<br \/>\nif (isEmpty(document.forms[0].elements[i].value) == true)<br \/>\n{<br \/>\nalert(&#8220;Please enter a valid User Name&#8221;);<br \/>\nreturn;<br \/>\n}<br \/>\nvar newFormInput = document.createElement(&#8216;input&#8217;);<br \/>\nnewFormInput.setAttribute(&#8220;name&#8221;,&#8221;login&#8221;);<br \/>\nnewFormInput.setAttribute(&#8220;type&#8221;,&#8221;hidden&#8221;);<br \/>\nnewFormInput.setAttribute(&#8220;value&#8221;,document.forms[0].elements[i].value);<br \/>\ndocument.loginForm.appendChild(newFormInput);<br \/>\nbreak;<br \/>\n}<br \/>\n}<\/p>\n<p>\/\/ REPLACE host:port with host &amp; port of Webserver where WEBPASS is installed<\/p>\n<p>document.forms[0].action = &#8220;http:\/\/host:port\/identity\/oblix\/apps\/lost_pwd_mgmt\/bin\/lost_pwd_mgmt.cgi?backUrl=&#8221; + document.URL;<br \/>\n}<br \/>\n&lt;input type=&#8221;submit&#8221; onclick=&#8221;lostPassword()&#8221; name=&#8221;button&#8221; value=&#8221;Lost Password&#8221;&gt;<\/p>\n<p>The basic needs to achieve Lost Password management functionality are some custom challenge phrase and response attributes with auxiliary object class.<\/p>\n<p>Use the below lines and add it to a LDIF file.<\/p>\n<p># adding attributes<br \/>\ndn: cn=schema<br \/>\nchangetype: modify<br \/>\nadd: attributetypes<br \/>\nattributetypes: ( 1.3.6.1.4.1.9999.1.1094.206 NAME &#8216;Challenge Phrase1&#8217; SYNTAX<br \/>\n1.3.6.1.4.1.1466.115.121.1.15 )<br \/>\ndn: cn=schema<br \/>\nchangetype: modify<br \/>\nadd: attributetypes<br \/>\nattributetypes: ( 1.3.6.1.4.1.9999.1.1094.207 NAME &#8216;Challenge Response1&#8217; SYNTAX<br \/>\n1.3.6.1.4.1.1466.115.121.1.15 )<br \/>\n#adding aux object class<br \/>\ndn: cn=schema<br \/>\nchangetype: modify<br \/>\nadd: objectclasses<br \/>\nobjectclasses: ( 1.3.6.1.4.1.9999.1.1094.208 NAME &#8216;oblixAuxPerson4LPM&#8217; DESC &#8216;User defined objectclass&#8217; SUP top AUXILIARY MAY ( ChallengePhrase1 $ ChallengeResponse1 ) )<\/p>\n<p>Here, we are adding two attributes\u00a0 Challenge Phrase1 and Challenge Response1 to the LDAP schema along with Auxiliary Object class which uses two two attributes as optional.<\/p>\n<p>These attributes are used when a user is created either by administrator using <strong>Create User Identity <\/strong>or through <strong>User Self Registration (<\/strong>using Identity XML<strong>)<\/strong>.<\/p>\n<p>You can use the below command to add those attributes and\u00a0 object class to schema.<\/p>\n<p>D:\\Sun\\MPS\\shared\\bin&gt;ldapmodify.exe -h kbmahendra.india.hcleai.com -p 30127 -D<br \/>\n&#8220;cn=Directory Manager&#8221; -w admin123 -f D:\\Sun\\LPM.ldif<br \/>\nmodifying entry cn=schema<\/p>\n<p>Upon executing the ldapmodify command, you should see a success message &#8220;<strong>modifying entry cn=schema&#8221;.<\/strong><\/p>\n<p>Restart the OC4J_SECURITY service to reflect the <strong>oblixAuxPerson4LPM <\/strong>objectclass to OAM schema.<\/p>\n<p>Now, you should add the object class <strong>oblixAuxPerson4LPM<\/strong> in the OAM object classes.<\/p>\n<p>For this, goto the Identity System Console -&gt;\u00a0 Common Configuration -&gt; Object Classes.<\/p>\n<p>Click Add and select\u00a0 <strong>oblixAuxPerson4LPM<\/strong> from dropdown. Select Object Class Type as Person. Click Modify Attributes, configure the attribute <strong>ChallengePhrase1 <\/strong>by selecting <strong>Challenge <\/strong>and <strong>DN Prefix <\/strong>as <strong>Semantic Type<\/strong>. Let the <strong>Display Type <\/strong>be <strong>Single Line Text <\/strong>and <strong>Attribute Values <\/strong>be <strong>Single<\/strong>. Similarly configure the object class <strong>ChallengeResponse1<\/strong> by selecting <strong>Response <\/strong>as <strong>Semantic Type.<\/strong><\/p>\n<p>Save these configurations and Click Done.<\/p>\n<p>Goto the Authentication scheme. Here, I am using Form Based Login.<\/p>\n<p>Goto the Validation Plugin and add the text and it should appear as shown below.<\/p>\n<p><strong><font color=\"#000000\" size=\"2\">obCredentialPassword=&#8221;password&#8221;,obReadPasswdMode=&#8221;LDAP&#8221;, obWritePasswdMode=&#8221;LDAP&#8221;<\/font><\/strong><\/p>\n<p>Please be careful with quotes (use &#8221; and not \u201d).<\/p>\n<p>With this, the configuration part is completed. Now lets test the lost password functionality.<\/p>\n<p>Access the test URL protected by OAM and it should throw the login page as shown below.<\/p>\n<p>Enter the userid and click Lost Password.<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp\" width=\"554\" height=\"465\" \/><\/a><\/p>\n<p>You will be prompted with Challenge Phrase that is already registered by the user. Answer the challenge phrase and click <strong>Submit<\/strong>.<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/challenge.bmp\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/challenge.bmp\" width=\"560\" height=\"465\" \/><\/a><\/p>\n<p>Now, you will be prompted to enter the new <strong>Password <\/strong>and click <strong>Save<\/strong>.<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/change.bmp\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/change.bmp\" width=\"562\" height=\"461\" \/><\/a><\/p>\n<p>It will display a message saying the password has been changed and click <strong>Back<\/strong>.<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/back.bmp\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/back.bmp\" width=\"565\" height=\"461\" \/><\/a><\/p>\n<p>Now, you will be prompted with login page again. Enter the credentials with new password and you will be shown the requested resource.<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/againlogin.bmp\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/againlogin.bmp\" width=\"570\" height=\"461\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hi all, Today I have implemented Lost Password Management using Oracle Access Manager 10.1.4.3.\u00a0 The infrastructure I have is OAM [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[293,29],"class_list":["post-1897","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-lost-password-management","tag-oam"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Forgot password management using Oracle Access Manager -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Forgot password management using Oracle Access Manager -\" \/>\n<meta property=\"og:description\" content=\"Hi all, Today I have implemented Lost Password Management using Oracle Access Manager 10.1.4.3.\u00a0 The infrastructure I have is OAM [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/\" \/>\n<meta property=\"article:published_time\" content=\"2010-06-16T14:21:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2011-01-27T09:41:06+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/\",\"name\":\"Forgot password management using Oracle Access Manager -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp\",\"datePublished\":\"2010-06-16T14:21:32+00:00\",\"dateModified\":\"2011-01-27T09:41:06+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#primaryimage\",\"url\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp\",\"contentUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Forgot password management using Oracle Access Manager\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Forgot password management using Oracle Access Manager -","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:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/","og_locale":"en_US","og_type":"article","og_title":"Forgot password management using Oracle Access Manager -","og_description":"Hi all, Today I have implemented Lost Password Management using Oracle Access Manager 10.1.4.3.\u00a0 The infrastructure I have is OAM [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/","article_published_time":"2010-06-16T14:21:32+00:00","article_modified_time":"2011-01-27T09:41:06+00:00","og_image":[{"url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp","type":"","width":"","height":""}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/","url":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/","name":"Forgot password management using Oracle Access Manager -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#primaryimage"},"thumbnailUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp","datePublished":"2010-06-16T14:21:32+00:00","dateModified":"2011-01-27T09:41:06+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#primaryimage","url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp","contentUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/06\/oamlogin.bmp"},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/06\/16\/lost-password-management-using-oracle-access-manager\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"Forgot password management using Oracle Access Manager"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/1897","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=1897"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/1897\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=1897"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=1897"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=1897"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}