{"id":67042,"date":"2023-03-28T21:16:41","date_gmt":"2023-03-28T20:16:41","guid":{"rendered":""},"modified":"2023-07-25T17:43:38","modified_gmt":"2023-07-25T16:43:38","slug":"common-mistakes-to-avoid-when-deploying-to-azure-web-app","status":"publish","type":"post","link":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/","title":{"rendered":"Common mistakes to avoid when deploying to Azure Web App"},"content":{"rendered":"\n

If you are looking for a fast and uncomplicated way to host your web application on the cloud, you might want to consider Azure Web App<\/a>. Azure Web App is a service that allows you to run web apps on Azure without having to manage servers, virtual machines, or containers – you can simply upload your code, configure your settings, and let Azure handle the rest. However, as with any cloud service, there are some potential pitfalls that you need to be aware of when deploying to Azure Web App. <\/p>\n\n\n\n

In this blog post, we will share some of the common mistakes that we have seen developers make when deploying to Azure Web App, and how to avoid them. We will also cover topics such as deployment methods, app settings, and connection strings. By following these tips, you can avoid some of the common headaches that can occur when deploying to Azure Web App and enjoy the benefits of this powerful and convenient service. <\/p>\n\n\n\n

Let us look at these common mistakes under five sub-topics. <\/p>\n\n\n\n

Operating System and Runtimes <\/h3>\n\n\n\n

One of the best things about Azure Web App is its support for multiple frameworks and runtimes including .NET, Java, Ruby, JavaScript, PHP, and Python.  For those who still develop on the .NET Framework, a common mistake that is made when provisioning Azure Web App is to create a Linux based web application. This would cause an issue because the application would need Windows specific libraries and dependencies to run successfully. So, when deploying, ensure you pick the correct operating system and runtime for your web application. <\/p>\n\n\n\n

There are two operating system options to pick from when creating an Azure Web App \u2013 Windows and Linux. While you can deploy most of your applications on either operating system, check your runtime and framework compatibility \u2013 especially if you are running a .NET Framework based application. <\/p>\n\n\n\n

For more on operating systems in Azure web app, check out this article on Operating System Functionality<\/a>. <\/p>\n\n\n\n

App Settings and Environment Variables <\/h3>\n\n\n\n

Another common mistake I see developers make when deploying applications is that they forget to update their application settings from local values to cloud-based values. Let me explain more. <\/p>\n\n\n\n

Let us take an example, where you are loading a .csv file to read in your application to seed data. Most times, this would be done from a local disk file and put in the appsetting.json\/web.config file (if you are writing .NET). Sometimes, developers will forget to update this value to a cloud based one \u2013 for example, the same .csv file but in Azure Storage or in some other cloud storage solution, and the application will keep failing to load. <\/p>\n\n\n\n

If possible, your local app settings, environment variables or configuration should not be committed or deployed alongside your code. Rather, app settings and environment variables for your deployment applications should be configured on the application, deployed to the web app as part of your CICD process, or put in an app configuration\/secret store like Azure Key Vault. <\/p>\n\n\n\n

Connection Strings <\/h3>\n\n\n\n

Another common mistake, and a follow-on from the previous one, is connection strings. Most times when developing locally, a developer would connect to a local data store. For example this might be Microsoft SQL Server on localhost, and the database connection strong would look something like this:<\/p>\n\n\n

“ConnectionStrings”: {<\/span> 
<\/span>    “DefaultConnection”: “Server=.;Database=DaraDB;Trusted_Connection=True;MultipleActiveResultSets=true”<\/span> 
}<\/span> <\/span><\/p>\n\n\n

But when deployed \u2013 especially through the \u201cRight-Click-Deploy\u201d method, developers often forget to set the connection string values in the Azure Portal which could sometimes lead to hours of pointless troubleshooting. <\/p>\n\n\n\n

To avoid this, it is always recommended \u2013 if you are sticking to right-click-deploy \u2013 to modify the database connection string to the one accessible by your Azure Web App on the deployment configuration page.  <\/p>\n\n\n

\"The<\/figure>\n\n\n\n

Looking below, we see that Visual Studio has detected a service connection to a database and suggests we add it to our web application in Azure. <\/p>\n\n\n\n

When you click on the \u201c+\u201d button, you get a prompt to add various services. You will then need to select Azure SQL database. <\/p>\n\n\n

\"The<\/figure>\n\n\n\n

After selecting your database, you are prompted to input the login details and preferred location to save the connection string values. <\/p>\n\n\n

\"The<\/figure>\n\n\n\n

Now this saves post-deployment stress. <\/p>\n\n\n

\"The<\/figure>\n\n\n
\"The<\/figure>\n\n\n\n

If you’re using Azure SQL database, you would need to \u201cAllow Azure services\u201d access to the database server\u2019s firewall, or set up a virtual network to allow a private connection in-between the two services. <\/p>\n\n\n

\"A<\/figure>\n\n\n\n

Local File Storage <\/h3>\n\n\n\n

When debugging applications locally, sometimes we need to upload resources like images, documents, audio and video files. Some coding conventions – for example in .NET using File.MapPath(localFilePath.ext)<\/strong> – put these resources in the source code folder. These often get committed and deployed alongside the application code to Azure Web App, which normally should not be. This starts to fill up the web app allocated storage quota, and can sometimes lead to a lack of storage space and may hinder such an application from performing optimally. <\/p>\n\n\n\n

What can be done in this case is to employ a storage solution like Azure Blob Storage even during local development, and ensure that any file loaded into memory is deleted after being successfully uploaded. <\/p>\n\n\n\n

The question might then get asked, \u201cwould I not be incurring costs in the cloud?\u201d The answer to that is that when developing locally, you can use the Azurite emulator<\/a> to upload and work with files as if you were connecting to a cloud resource. <\/p>\n\n\n\n

Database Migrations <\/h3>\n\n\n\n

One of the most common mistakes with deploying and using Azure web applications is that often, when developers add migrations to their applications, they apply them normally, upgrade the database and run the application. When things look good, they go ahead and deploy as-is. But once the application gets loaded, it fails to start-up because it is trying to connect to a database with outdated migrations. There are two ways you can fix this mistake: <\/p>\n\n\n\n

    \n
  • Employ automatic database migrations once your application starts up. <\/li>\n\n\n\n
  • Run database migrations as part of the CICD process. <\/li>\n<\/ul>\n\n\n\n

    We have looked at 5 of the common mistakes made when deploying applications to Azure web apps and possible ways to avoid them. Happy deployments! <\/p>\n","protected":false},"excerpt":{"rendered":"

    In this blog post we share some of the common mistakes that we see developers make when deploying to Azure Web App.<\/p>\n","protected":false},"author":430,"featured_media":21801,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","footnotes":""},"categories":[594],"post_tag":[128,519],"content-type":[],"coauthors":[2028],"class_list":["post-67042","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technetuk","tag-azure","tag-technet-uk"],"yoast_head":"\nCommon mistakes to avoid when deploying to Azure Web App - Microsoft Industry Blogs - United Kingdom<\/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:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Common mistakes to avoid when deploying to Azure Web App - Microsoft Industry Blogs - United Kingdom\" \/>\n<meta property=\"og:description\" content=\"In this blog post we share some of the common mistakes that we see developers make when deploying to Azure Web App.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Industry Blogs - United Kingdom\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-28T20:16:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-25T16:43:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Dara Oladapo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dara Oladapo\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 min read\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/author\/dara-oladapo\/\",\"@type\":\"Person\",\"@name\":\"Dara Oladapo\"}],\"headline\":\"Common mistakes to avoid when deploying to Azure Web App\",\"datePublished\":\"2023-03-28T20:16:41+00:00\",\"dateModified\":\"2023-07-25T16:43:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\"},\"wordCount\":1070,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg\",\"keywords\":[\"Azure\",\"TechNet UK\"],\"articleSection\":[\"TechNet UK\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\",\"url\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\",\"name\":\"Common mistakes to avoid when deploying to Azure Web App - Microsoft Industry Blogs - United Kingdom\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg\",\"datePublished\":\"2023-03-28T20:16:41+00:00\",\"dateModified\":\"2023-07-25T16:43:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage\",\"url\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg\",\"width\":800,\"height\":450,\"caption\":\"An illustration of a cloud made of puzzle pieces, with a drawing of Bit the Raccoon to the right of the image.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Common mistakes to avoid when deploying to Azure Web App\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/\",\"name\":\"Microsoft Industry Blogs - United Kingdom\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#organization\",\"name\":\"Microsoft Industry Blogs - United Kingdom\",\"url\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png\",\"width\":259,\"height\":194,\"caption\":\"Microsoft Industry Blogs - United Kingdom\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Common mistakes to avoid when deploying to Azure Web App - Microsoft Industry Blogs - United Kingdom","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.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/","og_locale":"en_US","og_type":"article","og_title":"Common mistakes to avoid when deploying to Azure Web App - Microsoft Industry Blogs - United Kingdom","og_description":"In this blog post we share some of the common mistakes that we see developers make when deploying to Azure Web App.","og_url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/","og_site_name":"Microsoft Industry Blogs - United Kingdom","article_published_time":"2023-03-28T20:16:41+00:00","article_modified_time":"2023-07-25T16:43:38+00:00","og_image":[{"width":800,"height":450,"url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg","type":"image\/jpeg"}],"author":"Dara Oladapo","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Dara Oladapo","Est. reading time":"4 min read"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/author\/dara-oladapo\/","@type":"Person","@name":"Dara Oladapo"}],"headline":"Common mistakes to avoid when deploying to Azure Web App","datePublished":"2023-03-28T20:16:41+00:00","dateModified":"2023-07-25T16:43:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/"},"wordCount":1070,"commentCount":0,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg","keywords":["Azure","TechNet UK"],"articleSection":["TechNet UK"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/","url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/","name":"Common mistakes to avoid when deploying to Azure Web App - Microsoft Industry Blogs - United Kingdom","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg","datePublished":"2023-03-28T20:16:41+00:00","dateModified":"2023-07-25T16:43:38+00:00","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#primaryimage","url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg","contentUrl":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/01\/technetcloudpuzzlethumb.jpg","width":800,"height":450,"caption":"An illustration of a cloud made of puzzle pieces, with a drawing of Bit the Raccoon to the right of the image."},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/technetuk\/2023\/03\/28\/common-mistakes-to-avoid-when-deploying-to-azure-web-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/"},{"@type":"ListItem","position":2,"name":"Common mistakes to avoid when deploying to Azure Web App"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/","name":"Microsoft Industry Blogs - United Kingdom","description":"","publisher":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#organization","name":"Microsoft Industry Blogs - United Kingdom","url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png","contentUrl":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png","width":259,"height":194,"caption":"Microsoft Industry Blogs - United Kingdom"},"image":{"@id":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/posts\/67042","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/users\/430"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/comments?post=67042"}],"version-history":[{"count":0,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/posts\/67042\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/media\/21801"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/media?parent=67042"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/categories?post=67042"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/post_tag?post=67042"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/content-type?post=67042"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/coauthors?post=67042"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}