{"id":6156,"date":"2022-09-01T20:08:25","date_gmt":"2022-09-01T14:38:25","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/"},"modified":"2022-09-01T20:08:25","modified_gmt":"2022-09-01T14:38:25","slug":"solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/","title":{"rendered":"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-55620861\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"55620861\" data-parentid=\"55596909\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>The easiest way to display information gathered from the chat is to send back channel events from the bot with the data and then intercept the message with a custom activity middleware in WebChat. Then you can process the data on the webpage however you&#8217;d like.<\/p>\n<p><strong>Bot &#8211; NodeJs SDK v4<\/strong><\/p>\n<p>In the bot, we are going to send back channel events to WebChat with the data we have gathered in the chat. Basically, you just need to send an activity with the type property set to &#8216;event&#8217; and the name attribute set to some string value &#8211; we are going to use data in this case. The conversation data is going to be encapsulated in the activity&#8217;s channel data.<\/p>\n<pre><code>await step.context.sendActivity({name: 'data', type: 'event', channelData: data});\n<\/code><\/pre>\n<p><strong>WebChat &#8211; Custom Middleware<\/strong><\/p>\n<p>In WebChat, we are going to implement a custom middleware that is going to check incoming activities for the type and name values we specified earlier. When we do encounter a back channel event, we can handle the incoming data and update the web page.<\/p>\n<pre><code>const store = createStore(\n  {},\n  ({ dispatch }) =&gt; next =&gt; action =&gt; {\n    if (action.type === 'DIRECT_LINE\/INCOMING_ACTIVITY') {\n      let { channelData, name, type } = action.payload.activity;\n      channelData || (channelData = {});\n\n      if(type === 'event' &amp;&amp; name === 'data') {\n        this.props.handleData(channelData);\n      }\n    }\n    return next(action);\n  });\n<\/code><\/pre>\n<p><strong>Screenshot<\/strong><\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>Since WebChat is built with React, I would highly recommend building this web page with React as well. There is already a sample &#8211; <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/Microsoft\/BotFramework-WebChat\/tree\/master\/samples\/16.customization-selectable-activity\">customization-selectable-activity<\/a> &#8211; that splits the page into two columns with WebChat in one column and an activity inspector in the other. You could easily modify this sample to meet your requirements by adding the custom middleware to WebChat in this sample and changing the inspector view to a data table.<\/p>\n<p><strong>Requesting WebChat Token<\/strong><\/p>\n<p>Note, for the simplicity of getting started,you can fetch the DirectLine token from the client side; however, it is recommended that you create a backend REST API to generate and manage your tokens.<\/p>\n<pre class=\"lang-js prettyprint-override\"><code>const res = await fetch('https:\/\/directline.botframework.com\/v3\/directline\/tokens\/generate', \n{ \n  method: 'POST',\n  headers: {\n    'Authorization': `Bearer &lt;SECRET&gt;`,\n    'Content-Type': 'application\/json'\n  },\n});\n\nconst { token } = await res.json();\n<\/code><\/pre>\n<p>Hope this helps.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">5<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] The easiest way to display information gathered from the chat is to send back channel events from the bot with the data and then intercept the message with a custom activity middleware in WebChat. Then you can process the data on the webpage however you&#8217;d like. Bot &#8211; NodeJs SDK v4 In the bot, &#8230; <a title=\"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\" aria-label=\"More on [Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[1134,346,902,1659],"class_list":["post-6156","post","type-post","status-publish","format-standard","hentry","category-solved","tag-botframework","tag-html","tag-node-js","tag-web-chat"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] The easiest way to display information gathered from the chat is to send back channel events from the bot with the data and then intercept the message with a custom activity middleware in WebChat. Then you can process the data on the webpage however you&#8217;d like. Bot &#8211; NodeJs SDK v4 In the bot, ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-01T14:38:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\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:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?\",\"datePublished\":\"2022-09-01T14:38:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\"},\"wordCount\":332,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\",\"keywords\":[\"botframework\",\"html\",\"node.js\",\"web-chat\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\",\"name\":\"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\",\"datePublished\":\"2022-09-01T14:38:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? - JassWeb","og_description":"[ad_1] The easiest way to display information gathered from the chat is to send back channel events from the bot with the data and then intercept the message with a custom activity middleware in WebChat. Then you can process the data on the webpage however you&#8217;d like. Bot &#8211; NodeJs SDK v4 In the bot, ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/","og_site_name":"JassWeb","article_published_time":"2022-09-01T14:38:25+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?","datePublished":"2022-09-01T14:38:25+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/"},"wordCount":332,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png","keywords":["botframework","html","node.js","web-chat"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/","name":"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png","datePublished":"2022-09-01T14:38:25+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-How-to-create-a-side-window-or-iframe-that.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-a-side-window-or-iframe-that-shows-data-that-was-gathered-by-a-web-chat-in-one-web-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to create a side window or iframe that shows data that was gathered by a Web-Chat in one web page?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/6156","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=6156"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/6156\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=6156"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=6156"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=6156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}