{"id":15386,"date":"2020-08-06T06:23:36","date_gmt":"2020-08-06T06:23:36","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=15386"},"modified":"2020-08-07T03:17:56","modified_gmt":"2020-08-07T03:17:56","slug":"creating-an-asp-net-core-web-app-in-azure","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/","title":{"rendered":"Creating an ASP.NET Core web app in Azure"},"content":{"rendered":"\n<p>this tutorial will help you in Creating an ASP.NET Core web app in Azure. When you&#8217;re finished, you&#8217;ll be having an Azure resource group consisting of an App Service hosting plan and an App Service with a deployed web application.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"create-an-aspnet-core-web-app\"><strong>Creating an ASP.NET Core web app<\/strong><\/h3>\n\n\n\n<p>Creating an ASP.NET Core web app in Visual Studio by following the below mentioned steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Visit Visual Studio and choose&nbsp;<strong>Create a new project<\/strong>.<\/li><li>In&nbsp;<strong>Create a new project<\/strong>, choose&nbsp;<strong>ASP.NET Core Web Application<\/strong>&nbsp;and ensure that&nbsp;<strong>C#<\/strong>&nbsp;is listed in the languages for that choice, then choose&nbsp;<strong>Next<\/strong>.<\/li><li>In&nbsp;<strong>Configure your new project<\/strong>, name for your web application project&nbsp;as <em>myFirstAzureWebApp<\/em>, and choose&nbsp;<strong>Create<\/strong>.<\/li><\/ol>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/media\/app-service-web-get-started-dotnet\/configure-web-app-project.png\" alt=\"Configure your web app project\"\/><figcaption>Image Source &#8211; Microsoft<\/figcaption><\/figure><\/div>\n\n\n\n<p>You could deploy any type of ASP.NET Core web app to Azure, but for this, select the&nbsp;<strong>Web Application<\/strong>&nbsp;template. Make sure&nbsp;<strong>Authentication<\/strong>&nbsp;is enabled to&nbsp;<strong>No Authentication<\/strong>, and that no other option is choosen. Then, choose&nbsp;<strong>Create<\/strong>.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/media\/app-service-web-get-started-dotnet\/create-aspnet-core-web-app.png\" alt=\"Create a new ASP.NET Core web app\"\/><figcaption>Image Source &#8211; Microsoft<\/figcaption><\/figure><\/div>\n\n\n\n<p>From the Visual Studio menu, choose&nbsp;<strong>Debug<\/strong>&nbsp;&gt;&nbsp;<strong>Start Without Debugging<\/strong>&nbsp;to run your web app locally and properly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"publish-your-web-app\"><strong>Publish your web app<\/strong><\/h3>\n\n\n\n<p>To publish your web app, you must first be creating and configuring a new App Service that you can publish your app to.<\/p>\n\n\n\n<p>As part of setting up the App Service, you&#8217;ll be creating:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, A new&nbsp;resource group&nbsp;to consist of all of the Azure resources for the service.<\/li><li>Also, A new&nbsp;Hosting Plan&nbsp;that specify the location, size, and features of the web server farm that will be hosting your app.<\/li><\/ul>\n\n\n\n<p>Follow the below mentioned steps to create your App Service and publish your web app:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, In&nbsp;<strong>Solution Explorer<\/strong>, right-click the&nbsp;<strong>myFirstAzureWebApp<\/strong>&nbsp;project and choose&nbsp;<strong>Publish<\/strong>. If you haven&#8217;t already signed-in to your Azure account from Visual Studio,choose either&nbsp;<strong>Add an account<\/strong>&nbsp;or&nbsp;<strong>Sign in<\/strong>. You can also choose to create a free Azure account.<\/li><li>In the&nbsp;<strong>Pick a publish target<\/strong>&nbsp;dialog box, select&nbsp;<strong>App Service<\/strong>, choose&nbsp;<strong>Create New<\/strong>, and then choose&nbsp;<strong>Create Profile<\/strong>.<\/li><li>Subsequently, In the&nbsp;<strong>App Service: Create new<\/strong>&nbsp;dialog, provide a globally unique&nbsp;<strong>Name<\/strong>&nbsp;for your app by either accepting the default name, or typing a new name. Valid characters, that are acceptable, are:&nbsp;<code>a-z<\/code>,&nbsp;<code>A-Z<\/code>,&nbsp;<code>0-9<\/code>, and&nbsp;<code>-<\/code>. This&nbsp;<strong>Name<\/strong> will be used as the URL prefix for your web app in the format&nbsp;<code>http:\/\/&lt;app_name&gt;.azurewebsites.net<\/code>.<\/li><li>Furthermore, For&nbsp;<strong>Subscription<\/strong>, accept the subscription that is listed or choose a new one from the drop-down list.<\/li><li>In&nbsp;<strong>Resource group<\/strong>, choose&nbsp;<strong>New<\/strong>. In&nbsp;<strong>New resource group name<\/strong>, enter&nbsp;<em>myResourceGroup<\/em>&nbsp;and choose&nbsp;<strong>OK<\/strong>.<\/li><li>Also, For&nbsp;<strong>Hosting Plan<\/strong>, choose <strong>New<\/strong>.<\/li><li>In the&nbsp;<strong>Hosting Plan: choose new<\/strong>&nbsp;dialog<\/li><li>Also, Leave&nbsp;<strong>Application Insights<\/strong>&nbsp;setting to&nbsp;<em>None<\/em>.<\/li><li>In the&nbsp;<strong>App Service: Create new<\/strong>&nbsp;dialog box, choose&nbsp;<strong>Create<\/strong>&nbsp;to start creating the Azure resources.<\/li><li>Once the wizard completes, choose&nbsp;<strong>Publish<\/strong> to publish your web app.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"update-the-app-and-redeploy\"><strong>Update the app and redeploy<\/strong><\/h3>\n\n\n\n<p>Follow the below mentioned steps to update and redeploy your web app:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, In&nbsp;<strong>Solution Explorer<\/strong>, under your project, choose to open&nbsp;<strong>Pages<\/strong>&nbsp;&gt;&nbsp;<strong>Index.cshtml<\/strong>.<\/li><li>Replace the entire&nbsp;<code>&lt;div&gt;<\/code>&nbsp;tag with the below code:<\/li><\/ul>\n\n\n\n<p>&lt;div class=&#8221;jumbotron&#8221;&gt; &lt;h1&gt;ASP.NET in Azure!&lt;\/h1&gt; &lt;p class=&#8221;lead&#8221;&gt;This is a simple app that we&#8217;ve built that demonstrates how to deploy a .NET app to Azure App Service.&lt;\/p&gt; &lt;\/div&gt;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Subsequently, To redeploy to Azure, right-click the&nbsp;<strong>myFirstAzureWebApp<\/strong>&nbsp;project in&nbsp;<strong>Solution Explorer<\/strong>&nbsp;and choose <strong>Publish<\/strong>.<\/li><li>Also, In the&nbsp;<strong>Publish<\/strong>&nbsp;summary page, choose&nbsp;<strong>Publish<\/strong>.<\/li><li>Latly, When publishing completes, Visual Studio will launche a browser to the URL of the web app.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"manage-the-azure-app\"><strong>Manage the Azure app<\/strong><\/h3>\n\n\n\n<p>To manage your web app, visit the&nbsp;Azure portal, and choose&nbsp;<strong>App Services<\/strong>.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/media\/app-service-web-get-started-dotnet\/app-services.png\" alt=\"Select App Services\"\/><figcaption>Image Source &#8211; Microsoft<\/figcaption><\/figure><\/div>\n\n\n\n<p>On the&nbsp;<strong>App Services<\/strong>&nbsp;page, choose the name of your web app.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/media\/app-service-web-get-started-dotnet\/select-app-service.png\" alt=\"Portal navigation to Azure app\"\/><figcaption>Image Source &#8211; Microsoft<\/figcaption><\/figure><\/div>\n\n\n\n<p>The&nbsp;<strong>Overview<\/strong>&nbsp;page for your web app, consists options for basic management like browse, stop, start, restart, and delete. The left menu provides further pages to complete process of configuring your app.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"clean-up-resources\"><strong>Clean up resources<\/strong><\/h3>\n\n\n\n<p>In the previous steps, you created Azure resources in a resource group. If you don&#8217;t expect to need these resources in the future, you are allowed delete them by deleting the resource group.<\/p>\n\n\n\n<p>From the Azure portal menu or&nbsp;<strong>Home<\/strong>&nbsp;page, choose&nbsp;<strong>Resource groups<\/strong>, and on the&nbsp;<strong>Resource groups<\/strong>&nbsp;page, choose&nbsp;<strong>myResourceGroup<\/strong>.<\/p>\n\n\n\n<p>On the&nbsp;<strong>myResourceGroup<\/strong>&nbsp;page, ensure that the listed resources are the ones you want to delete.<\/p>\n\n\n\n<p>Finally, choose&nbsp;<strong>Delete resource group<\/strong>, type&nbsp;<strong>myResourceGroup<\/strong>&nbsp;in the text box to confirm, and then choose&nbsp;<strong>Delete<\/strong>.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.testpreptraining.ai\/microsoft-azure-architect-technologies-az-303-free-practice-test\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"960\" height=\"150\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/07\/Untitled-design-5.png\" alt=\"free practice test for AZ- 303\" class=\"wp-image-13928\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/07\/Untitled-design-5.png 960w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/07\/Untitled-design-5-750x117.png 750w\" sizes=\"auto, (max-width: 960px) 100vw, 960px\" \/><\/a><\/figure><\/div>\n\n\n\n<p><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-303-microsoft-azure-architect-technologies\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Go back to home page <\/strong><\/a><\/p>\n\n\n\n<p class=\"has-text-align-right\"><strong>Reference documentation &#8211; <\/strong><a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/app-service-web-get-started-dotnet#create-an-aspnet-core-web-app\" target=\"_blank\" rel=\"noreferrer noopener\">Quickstart: Create an ASP.NET Core web app in Azure<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>this tutorial will help you in Creating an ASP.NET Core web app in Azure. When you&#8217;re finished, you&#8217;ll be having an Azure resource group consisting of an App Service hosting plan and an App Service with a deployed web application. Creating an ASP.NET Core web app Creating an ASP.NET Core web app in Visual Studio&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-15386","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Creating an ASP.NET Core web app in Azure - Testprep Training Tutorials<\/title>\n<meta name=\"description\" content=\"Enhance and upgrade your Azure Architect skills by preparing from tutorial - Creating an ASP.NET Core web app in Azure! Clear the exam now!\" \/>\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.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating an ASP.NET Core web app in Azure - Testprep Training Tutorials\" \/>\n<meta property=\"og:description\" content=\"Enhance and upgrade your Azure Architect skills by preparing from tutorial - Creating an ASP.NET Core web app in Azure! Clear the exam now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-07T03:17:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/media\/app-service-web-get-started-dotnet\/configure-web-app-project.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/\",\"name\":\"Creating an ASP.NET Core web app in Azure - Testprep Training Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2020-08-06T06:23:36+00:00\",\"dateModified\":\"2020-08-07T03:17:56+00:00\",\"description\":\"Enhance and upgrade your Azure Architect skills by preparing from tutorial - Creating an ASP.NET Core web app in Azure! Clear the exam now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating an ASP.NET Core web app in Azure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"name\":\"Testprep Training Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\",\"name\":\"Testprep Training\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"contentUrl\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"width\":583,\"height\":153,\"caption\":\"Testprep Training\"},\"image\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating an ASP.NET Core web app in Azure - Testprep Training Tutorials","description":"Enhance and upgrade your Azure Architect skills by preparing from tutorial - Creating an ASP.NET Core web app in Azure! Clear the exam now!","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.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/","og_locale":"en_US","og_type":"article","og_title":"Creating an ASP.NET Core web app in Azure - Testprep Training Tutorials","og_description":"Enhance and upgrade your Azure Architect skills by preparing from tutorial - Creating an ASP.NET Core web app in Azure! Clear the exam now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/","og_site_name":"Testprep Training Tutorials","article_modified_time":"2020-08-07T03:17:56+00:00","og_image":[{"url":"https:\/\/docs.microsoft.com\/en-us\/azure\/app-service\/media\/app-service-web-get-started-dotnet\/configure-web-app-project.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/","name":"Creating an ASP.NET Core web app in Azure - Testprep Training Tutorials","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2020-08-06T06:23:36+00:00","dateModified":"2020-08-07T03:17:56+00:00","description":"Enhance and upgrade your Azure Architect skills by preparing from tutorial - Creating an ASP.NET Core web app in Azure! Clear the exam now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-an-asp-net-core-web-app-in-azure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Creating an ASP.NET Core web app in Azure"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","name":"Testprep Training Tutorials","description":"","publisher":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization","name":"Testprep Training","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","contentUrl":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","width":583,"height":153,"caption":"Testprep Training"},"image":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/15386","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=15386"}],"version-history":[{"count":2,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/15386\/revisions"}],"predecessor-version":[{"id":15615,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/15386\/revisions\/15615"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=15386"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=15386"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=15386"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}