{"id":3509,"date":"2022-09-22T00:47:54","date_gmt":"2022-09-21T19:47:54","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3509"},"modified":"2022-09-22T00:47:56","modified_gmt":"2022-09-21T19:47:56","slug":"reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/","title":{"rendered":"React.js react-toastify Show Colorful Alert Toast or Notification Messages"},"content":{"rendered":"\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npx create-react-app toastifyexample<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">cd toastify<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npm i react-toastify<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Full Example with Source Code <\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">App.js<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">import React, { useState } from 'react'\nimport '.\/App.css'\nimport 'react-toastify\/dist\/ReactToastify.css'\nimport { toast, ToastContainer } from 'react-toastify'\n\nfunction App() {\n\n  const notify = (message, hasError = false) =&gt; {\n    if (hasError) {\n      toast.error(message, {\n        position: 'top-center',\n        autoClose: 5000,\n        hideProgressBar: false,\n        closeOnClick: true,\n        pauseOnHover: true,\n        draggable: true,\n        progress: undefined,\n      })\n    } else {\n      toast(message, {\n        position: 'top-center',\n        autoClose: 5000,\n        hideProgressBar: false,\n        closeOnClick: true,\n        pauseOnHover: true,\n        draggable: true,\n        progress: undefined,\n      })\n    }\n  }\n\n  const showAlert = () =&gt; {\n    notify(&quot;Hello world&quot;,true)\n  }\n\n\n  return (\n    &lt;div className='App'&gt;\n\n      &lt;button onClick={showAlert}&gt;\n        Show Alert\n      &lt;\/button&gt;\n  \n          &lt;ToastContainer\n            position='top-center'\n            autoClose={5000}\n            hideProgressBar={false}\n            newestOnTop={false}\n            closeOnClick\n            rtl={false}\n            pauseOnFocusLoss\n            draggable\n            pauseOnHover\n          \/&gt;\n    &lt;\/div&gt;\n  )\n}\n\nexport default App<\/pre><\/div>\n\n\n\n<p>Here we have a simple\u00a0<code>button<\/code>\u00a0to show alert messages. When we click this button the\u00a0<code>toastify<\/code>\u00a0alert notification will show in the\u00a0<code>center<\/code> position as we had given the position\u00a0<code>top-center<\/code>.\u00a0Now, if you run the app, you will see something like the below screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"192\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1-1024x192.jpg\" alt=\"react-toastify example\" class=\"wp-image-3510\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1-1024x192.jpg 1024w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1-300x56.jpg 300w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1-768x144.jpg 768w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1.jpg 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>react-toastify example<\/figcaption><\/figure>\n\n\n\n<p>As you can see we are showing the\u00a0<code>error<\/code>\u00a0notification message. Now, to show the\u00a0<code>success<\/code>\u00a0notification you need to change the below code in <code>App.js<\/code> file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">App.js<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">import React, { useState } from 'react'\nimport '.\/App.css'\nimport 'react-toastify\/dist\/ReactToastify.css'\nimport { toast, ToastContainer } from 'react-toastify'\n\nfunction App() {\n\n  const notify = (message, hasError = false) =&gt; {\n    if (hasError) {\n      toast.error(message, {\n        position: 'top-center',\n        autoClose: 5000,\n        hideProgressBar: false,\n        closeOnClick: true,\n        pauseOnHover: true,\n        draggable: true,\n        progress: undefined,\n      })\n    } else {\n      toast(message, {\n        position: 'top-center',\n        autoClose: 5000,\n        hideProgressBar: false,\n        closeOnClick: true,\n        pauseOnHover: true,\n        draggable: true,\n        progress: undefined,\n      })\n    }\n  }\n\n  const showAlert = () =&gt; {\n    notify(&quot;Data is inserted successfully&quot;)\n  }\n\n\n  return (\n    &lt;div className='App'&gt;\n\n      &lt;button onClick={showAlert}&gt;\n        Show Alert\n      &lt;\/button&gt;\n  \n          &lt;ToastContainer\n            position='top-center'\n            autoClose={5000}\n            hideProgressBar={false}\n            newestOnTop={false}\n            closeOnClick\n            rtl={false}\n            pauseOnFocusLoss\n            draggable\n            pauseOnHover\n          \/&gt;\n    &lt;\/div&gt;\n  )\n}\n\nexport default App<\/pre><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"254\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_2-1024x254.jpg\" alt=\"react-toastify example\" class=\"wp-image-3511\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_2-1024x254.jpg 1024w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_2-300x75.jpg 300w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_2-768x191.jpg 768w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_2.jpg 1510w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>react-toastify example<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Themes of Notification Messages<\/h2>\n\n\n\n<p>Three themes are supported<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>dark<\/li><li>light<\/li><li>colored<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Types of Notification Messages<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>error<\/li><li>warning<\/li><li>info<\/li><li>success<\/li><li>default<\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Full Example with Source Code App.js Here we have a simple\u00a0button\u00a0to show alert messages. When we click this button the\u00a0toastify\u00a0alert notification will show in the\u00a0center position as we had given the position\u00a0top-center.\u00a0Now, if you run the app, you will see something like the below screenshot. As you can see we are showing the\u00a0error\u00a0notification message. Now, &#8230; <a title=\"React.js react-toastify Show Colorful Alert Toast or Notification Messages\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/\" aria-label=\"Read more about React.js react-toastify Show Colorful Alert Toast or Notification Messages\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3509","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>React.js react-toastify Show Colorful Alert Toast or Notification Messages<\/title>\n<meta name=\"description\" content=\"npx create-react-app toastifyexample cd toastify npm i react-toastify Full Example with Source Code App.js import React, { useState } from &#039;react&#039; import\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"React.js react-toastify Show Colorful Alert Toast or Notification Messages\" \/>\n<meta property=\"og:description\" content=\"npx create-react-app toastifyexample cd toastify npm i react-toastify Full Example with Source Code App.js import React, { useState } from &#039;react&#039; import\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-21T19:47:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-21T19:47:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1-1024x192.jpg\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"React.js react-toastify Show Colorful Alert Toast or Notification Messages","description":"npx create-react-app toastifyexample cd toastify npm i react-toastify Full Example with Source Code App.js import React, { useState } from 'react' import","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:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/","og_locale":"en_US","og_type":"article","og_title":"React.js react-toastify Show Colorful Alert Toast or Notification Messages","og_description":"npx create-react-app toastifyexample cd toastify npm i react-toastify Full Example with Source Code App.js import React, { useState } from 'react' import","og_url":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-09-21T19:47:54+00:00","article_modified_time":"2022-09-21T19:47:56+00:00","og_image":[{"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/react_toastify_example_1-1024x192.jpg","type":"","width":"","height":""}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"React.js react-toastify Show Colorful Alert Toast or Notification Messages","datePublished":"2022-09-21T19:47:54+00:00","dateModified":"2022-09-21T19:47:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/"},"wordCount":109,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/","url":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/","name":"React.js react-toastify Show Colorful Alert Toast or Notification Messages","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-09-21T19:47:54+00:00","dateModified":"2022-09-21T19:47:56+00:00","description":"npx create-react-app toastifyexample cd toastify npm i react-toastify Full Example with Source Code App.js import React, { useState } from 'react' import","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/reactjs-react-toastify-show-colorful-alert-toast-or-notification-messages\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"React.js react-toastify Show Colorful Alert Toast or Notification Messages"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3509","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3509"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3509\/revisions"}],"predecessor-version":[{"id":3512,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3509\/revisions\/3512"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3509"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3509"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}