{"id":70910,"date":"2017-01-10T06:07:27","date_gmt":"2017-01-10T06:07:27","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=70910"},"modified":"2021-07-16T10:47:07","modified_gmt":"2021-07-16T10:47:07","slug":"sessions-added-opencarts-rest-api","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/","title":{"rendered":"How sessions added In Opencart\u2019s Rest API"},"content":{"rendered":"\n<p>In our previous blog :<a href=\"http:\/\/webkul.com\/blog\/add-ip-opencarts-rest-api\/\"> http:\/\/webkul.com\/blog\/add-ip-opencarts-rest-api\/<\/a>&nbsp;&nbsp;, we learnt how to add the IP in the opencart rest api&nbsp;. Today we will learn , how the sessions added&nbsp;in the opencart rest api .<\/p>\n\n\n\n<p>First of all , we have to know , where we can see these&nbsp;sessions &nbsp;. So to view the api session , we have to go to the&nbsp;System-&gt;Users-&gt;API and then click on edit api and go to session&nbsp;tab . Here you can see all the api session for the particular api . You can also remove the session from here by simply clicking the remove button .<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" width=\"1297\" height=\"675\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/api-2.png\" alt=\"\" class=\"wp-image-70911\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/api-2.png 1297w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/api-2-250x130.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/api-2-300x156.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/api-2-768x400.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/01\/api-2-1200x625.png 1200w\" sizes=\"(max-width: 1297px) 100vw, 1297px\" loading=\"lazy\" \/><\/figure><\/div>\n\n\n\n<p>Now we will see when and how these sessions have been created by the code . These sessions are created when you do&nbsp;the api login .<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">\/**\n * Webkul Software.\n *\n * @category Webkul\n * @package api\n * @author Webkul\n * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\n * @license https:\/\/store.webkul.com\/license.html\n *\/\n\n$session_name = 'temp_session_' . uniqid();\n$session = new Session();\n$session-&gt;start($this-&gt;session-&gt;getId(), $session_name);\n\n\/\/ Create Token\n$json['token'] = $this-&gt;model_account_api-&gt;addApiSession($api_info['api_id'], $session_name, $session-&gt;getId(), $this-&gt;request-&gt;server['REMOTE_ADDR']);<\/pre>\n\n\n\n<p>The above code is the part of the api login file that we have already shown in the previous blog . If you made the successful api login then this code executes . In this part of code the uniqid() function generates a unique id based on current time in microseconds . The second line of code is just to create the object of session class , so that we can access their functions . In the next line of code session is started with the current session id and with the name . In the last line of code , entry is done in the database .<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">\/**\n * Webkul Software.\n *\n * @category Webkul\n * @package api\n * @author Webkul\n * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\n * @license https:\/\/store.webkul.com\/license.html\n *\/\npublic function addApiSession($api_id, $session_name, $session_id, $ip) {\n\t\t$token = token(32);\n\n\t\t$this-&gt;db-&gt;query(\"INSERT INTO `\" . DB_PREFIX . \"api_session` SET api_id = '\" . (int)$api_id . \"', token = '\" . $this-&gt;db-&gt;escape($token) . \"', session_name = '\" . $this-&gt;db-&gt;escape($session_name) . \"', session_id = '\" . $this-&gt;db-&gt;escape($session_id) . \"', ip = '\" . $this-&gt;db-&gt;escape($ip) . \"', date_added = NOW(), date_modified = NOW()\");\n\n\t\treturn $token;\n\t}<\/pre>\n\n\n\n<p>In the above code , the token is generated with the token function and then by insert query , data is simply added to the database and token is returned to the caller function .<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our previous blog : http:\/\/webkul.com\/blog\/add-ip-opencarts-rest-api\/&nbsp;&nbsp;, we learnt how to add the IP in the opencart rest api&nbsp;. Today we will learn , how the sessions added&nbsp;in the opencart rest api . First of all , we have to know , where we can see these&nbsp;sessions &nbsp;. So to view the api session , we <a href=\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":124,"featured_media":41008,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[305,13],"tags":[],"class_list":["post-70910","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-opencart","category-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How sessions added In Opencart\u2019s Rest API - Webkul Blog<\/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:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How sessions added In Opencart\u2019s Rest API - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In our previous blog : http:\/\/webkul.com\/blog\/add-ip-opencarts-rest-api\/&nbsp;&nbsp;, we learnt how to add the IP in the opencart rest api&nbsp;. Today we will learn , how the sessions added&nbsp;in the opencart rest api . First of all , we have to know , where we can see these&nbsp;sessions &nbsp;. So to view the api session , we [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-01-10T06:07:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T10:47:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sarang Agrawal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sarang Agrawal\" \/>\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:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\"},\"author\":{\"name\":\"Sarang Agrawal\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3fe787f5e9200d06d3ebf9aa86af1558\"},\"headline\":\"How sessions added In Opencart\u2019s Rest API\",\"datePublished\":\"2017-01-10T06:07:27+00:00\",\"dateModified\":\"2021-07-16T10:47:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\"},\"wordCount\":275,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png\",\"articleSection\":[\"opencart\",\"php\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\",\"url\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\",\"name\":\"How sessions added In Opencart\u2019s Rest API - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png\",\"datePublished\":\"2017-01-10T06:07:27+00:00\",\"dateModified\":\"2021-07-16T10:47:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How sessions added In Opencart\u2019s Rest API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3fe787f5e9200d06d3ebf9aa86af1558\",\"name\":\"Sarang Agrawal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/463bd0dd4a24de98604547719c1903e8af6b4133153ba8cc08799c7b2e3a5ce6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/463bd0dd4a24de98604547719c1903e8af6b4133153ba8cc08799c7b2e3a5ce6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sarang Agrawal\"},\"sameAs\":[\"http:\/\/webkul.com\/blog\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/sarang-agrawal032\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How sessions added In Opencart\u2019s Rest API - Webkul Blog","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:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/","og_locale":"en_US","og_type":"article","og_title":"How sessions added In Opencart\u2019s Rest API - Webkul Blog","og_description":"In our previous blog : http:\/\/webkul.com\/blog\/add-ip-opencarts-rest-api\/&nbsp;&nbsp;, we learnt how to add the IP in the opencart rest api&nbsp;. Today we will learn , how the sessions added&nbsp;in the opencart rest api . First of all , we have to know , where we can see these&nbsp;sessions &nbsp;. So to view the api session , we [...]","og_url":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-01-10T06:07:27+00:00","article_modified_time":"2021-07-16T10:47:07+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png","type":"image\/png"}],"author":"Sarang Agrawal","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sarang Agrawal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/"},"author":{"name":"Sarang Agrawal","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3fe787f5e9200d06d3ebf9aa86af1558"},"headline":"How sessions added In Opencart\u2019s Rest API","datePublished":"2017-01-10T06:07:27+00:00","dateModified":"2021-07-16T10:47:07+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/"},"wordCount":275,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png","articleSection":["opencart","php"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/","url":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/","name":"How sessions added In Opencart\u2019s Rest API - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png","datePublished":"2017-01-10T06:07:27+00:00","dateModified":"2021-07-16T10:47:07+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/02\/Opencart-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/sessions-added-opencarts-rest-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How sessions added In Opencart\u2019s Rest API"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3fe787f5e9200d06d3ebf9aa86af1558","name":"Sarang Agrawal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/463bd0dd4a24de98604547719c1903e8af6b4133153ba8cc08799c7b2e3a5ce6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/463bd0dd4a24de98604547719c1903e8af6b4133153ba8cc08799c7b2e3a5ce6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sarang Agrawal"},"sameAs":["http:\/\/webkul.com\/blog"],"url":"https:\/\/webkul.com\/blog\/author\/sarang-agrawal032\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/70910","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/124"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=70910"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/70910\/revisions"}],"predecessor-version":[{"id":296404,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/70910\/revisions\/296404"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/41008"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=70910"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=70910"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=70910"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}