{"id":136543,"date":"2023-02-03T08:28:33","date_gmt":"2023-02-03T08:28:33","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=136543"},"modified":"2023-02-03T12:04:05","modified_gmt":"2023-02-03T12:04:05","slug":"handle-browser-level-notification-using-selenium","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/","title":{"rendered":"Handle Browser Level Notification Using Selenium"},"content":{"rendered":"\n<p>While surfing the internet, everyone must have come across so many websites that send notifications. Those notifications can be on a desktop or device even when that web page is not open in our browser. <\/p>\n\n\n\n<p>Generally, we call them&nbsp;web push notifications. Below is the screenshot of notifications from the Google Chrome browser:-<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1258\" height=\"518\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png\" alt=\"web push notification\" class=\"wp-image-137558\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png 1258w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification-250x103.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification-300x124.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification-768x316.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification-1200x494.png 1200w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>On a side note, we would like to mention about WooCommerce Push Notification plugin that we have developed allowing merchants to send custom push notifications to subscribers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step-by-step execution of Code:-<\/h3>\n\n\n\n<p>We have to follow the below-mentioned steps to handle these notifications:-<\/p>\n\n\n\n<p><strong>1:&nbsp;&nbsp;<\/strong>Create an instance of ChromeOptions class<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">ChromeOptions options = new ChromeOptions();<\/pre>\n\n\n\n<p><strong>2:&nbsp;<\/strong>Add chrome switch to disable notification &#8211; &#8220;&#8211;disable-notifications&#8221;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">options.addArguments(\"--disable-notifications\");<\/pre>\n\n\n\n<p><strong>3:&nbsp;<\/strong>Set path for the chrome driver<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">System.setProperty(\"webdriver.chrome.driver\", \"\/home\/users\/garima.pathak\/Desktop\/softwares\/chromedriver\");<\/pre>\n\n\n\n<p class=\"brush:java\"><strong>4:&nbsp;<\/strong>Pass ChromeOptions instance to ChromeDriver Constructor<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">WebDriver driver =new ChromeDriver(options);<\/pre>\n\n\n\n<p><strong>5: <\/strong>Give the navigation of the page on which we want to handle the notifications.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">driver.get(\"http:\/\/wordpressdemo.webkul.com\/wordpress-latest-tweets\/\");<\/pre>\n\n\n\n<h3 class=\"brush:java wp-block-heading\">Code:-<\/h3>\n\n\n\n<p>The complete code will look like this:-<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">package automationFramework;\n\nimport org.openqa.selenium.WebDriver;\nimport org.openqa.selenium.chrome.ChromeDriver;\nimport org.openqa.selenium.chrome.ChromeOptions;\n\npublic class Notifications {\npublic static void main(String[] args) {\nChromeOptions options = new ChromeOptions();\noptions.addArguments(\"--disable-notifications\");\nSystem.setProperty(\"webdriver.chrome.driver\", \"\/home\/users\/garima.pathak\/Desktop\/softwares\/chromedriver\");\nWebDriver driver =new ChromeDriver(options);\ndriver.get(\"http:\/\/wordpressdemo.webkul.com\/wordpress-latest-tweets\/\");\ndriver.manage().window().maximize();\n}\n}<\/pre>\n\n\n\n<p>That&#8217;s all about handling the notifications using Selenium. Thanks for reading this blog \ud83d\ude42 Keep coming back up for more dev blogs.<\/p>\n\n\n\n<p>As an official WooCommerce plugin vendor, we have developed many different plugins to add more features, functionalities, and new integrations to the WooCommerce platform. <\/p>\n\n\n\n<p>One of the most popular plugins is <a href=\"https:\/\/store.webkul.com\/woocommerce-multivendor-marketplace.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce Multi Vendor<\/a>, which allows third-party sellers to sell their products on the same WordPress website platform.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>While surfing the internet, everyone must have come across so many websites that send notifications. Those notifications can be on a desktop or device even when that web page is not open in our browser. Generally, we call them&nbsp;web push notifications. Below is the screenshot of notifications from the Google Chrome browser:- On a side <a href=\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":198,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5847],"tags":[],"class_list":["post-136543","post","type-post","status-publish","format-standard","hentry","category-selenium"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Handle Browser Level Notification Using Selenium<\/title>\n<meta name=\"description\" content=\"In this dev doc article, you will learn how to handle browser level web push notifications using Selenium.\" \/>\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\/handle-browser-level-notification-using-selenium\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Handle Browser Level Notification Using Selenium\" \/>\n<meta property=\"og:description\" content=\"In this dev doc article, you will learn how to handle browser level web push notifications using Selenium.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\" \/>\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=\"2023-02-03T08:28:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-03T12:04:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png\" \/>\n<meta name=\"author\" content=\"Garima Pathak\" \/>\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=\"Garima Pathak\" \/>\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\/handle-browser-level-notification-using-selenium\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\"},\"author\":{\"name\":\"Garima Pathak\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/e4e1f4ece892a640bd9b41f32c9b53ca\"},\"headline\":\"Handle Browser Level Notification Using Selenium\",\"datePublished\":\"2023-02-03T08:28:33+00:00\",\"dateModified\":\"2023-02-03T12:04:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\"},\"wordCount\":229,\"commentCount\":67,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png\",\"articleSection\":[\"Selenium\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\",\"url\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\",\"name\":\"Handle Browser Level Notification Using Selenium\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png\",\"datePublished\":\"2023-02-03T08:28:33+00:00\",\"dateModified\":\"2023-02-03T12:04:05+00:00\",\"description\":\"In this dev doc article, you will learn how to handle browser level web push notifications using Selenium.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png\",\"width\":\"1258\",\"height\":\"518\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Handle Browser Level Notification Using Selenium\"}]},{\"@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\/e4e1f4ece892a640bd9b41f32c9b53ca\",\"name\":\"Garima Pathak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e00de499182e68e890e1ffef88e476c2b6f56649684c0871e79d867d43b84b68?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e00de499182e68e890e1ffef88e476c2b6f56649684c0871e79d867d43b84b68?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Garima Pathak\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/garimapathak-tester19\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Handle Browser Level Notification Using Selenium","description":"In this dev doc article, you will learn how to handle browser level web push notifications using Selenium.","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\/handle-browser-level-notification-using-selenium\/","og_locale":"en_US","og_type":"article","og_title":"Handle Browser Level Notification Using Selenium","og_description":"In this dev doc article, you will learn how to handle browser level web push notifications using Selenium.","og_url":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-02-03T08:28:33+00:00","article_modified_time":"2023-02-03T12:04:05+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png","type":"","width":"","height":""}],"author":"Garima Pathak","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Garima Pathak","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/"},"author":{"name":"Garima Pathak","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/e4e1f4ece892a640bd9b41f32c9b53ca"},"headline":"Handle Browser Level Notification Using Selenium","datePublished":"2023-02-03T08:28:33+00:00","dateModified":"2023-02-03T12:04:05+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/"},"wordCount":229,"commentCount":67,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png","articleSection":["Selenium"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/","url":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/","name":"Handle Browser Level Notification Using Selenium","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png","datePublished":"2023-02-03T08:28:33+00:00","dateModified":"2023-02-03T12:04:05+00:00","description":"In this dev doc article, you will learn how to handle browser level web push notifications using Selenium.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/notification.png","width":"1258","height":"518"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/handle-browser-level-notification-using-selenium\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Handle Browser Level Notification Using Selenium"}]},{"@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\/e4e1f4ece892a640bd9b41f32c9b53ca","name":"Garima Pathak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e00de499182e68e890e1ffef88e476c2b6f56649684c0871e79d867d43b84b68?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e00de499182e68e890e1ffef88e476c2b6f56649684c0871e79d867d43b84b68?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Garima Pathak"},"url":"https:\/\/webkul.com\/blog\/author\/garimapathak-tester19\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/136543","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\/198"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=136543"}],"version-history":[{"count":26,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/136543\/revisions"}],"predecessor-version":[{"id":367423,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/136543\/revisions\/367423"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=136543"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=136543"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=136543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}