{"id":617,"date":"2016-06-01T09:38:28","date_gmt":"2016-06-01T14:38:28","guid":{"rendered":"http:\/\/blog.tiingo.com\/?p=349"},"modified":"2016-06-01T09:38:28","modified_gmt":"2016-06-01T14:38:28","slug":"set-hosted-web-apps-hwas-live-tiles-windows-apps","status":"publish","type":"post","link":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/","title":{"rendered":"How to set up Hosted Web Apps with Windows Live Tiles"},"content":{"rendered":"<p>For those of \u00a0you who have been keeping up with this blog, the Javascript container process is something I&#8217;ve been following closely for the past decade.\u00a0Earlier in the year, Peter Kruger from Microsoft reached out asking if I could test their latest implementation, which we presented at \/\/Build. It was an honor, and since then I&#8217;ve been advocating\u00a0<a href=\"http:\/\/appstudio.windows.com\/en-us\" target=\"_blank\">Microsoft <\/a>and <a href=\"https:\/\/www.openfin.co\" target=\"_blank\">OpenFin&#8217;s <\/a>implementation as my favorites.<\/p>\n<p><strong>In a nutshell<\/strong>: The Javascript container process let&#8217;s you take a JS website and make it feel native to the operating system &#8211; whether it&#8217;s iOS, Droid, or Windows. We&#8217;re going to cover the Windows Live Tile implementation here.<\/p>\n<p>For those of you with Windows machines, tablets, or phones (okay Surface users and PCs) &#8211; you may see what Windows calls &#8220;Live tiles.&#8221; Windows 8 may have overdone it \ud83d\ude09 but\u00a0Windows 10 nailed it. Tiles\u00a0allow you to gain a snapshot of what the app is doing without having to open it. I always found this implemented on Android clumsy from a UI standpoint and the feature is mostly non-existent on iOS -with the exception of a Apple-apps like weather and the clock. <em>I use an iPhone for the record<\/em>.<\/p>\n<p>But &#8211; Microsoft nailed it IMO with the perfect amount of structure and dynamic content. Whereas Android has widgets which are all sorts of shapes, Microsoft forces structure and lets you &#8220;snap&#8221; together tiles.<\/p>\n<p>E.g.<\/p>\n<figure id=\"attachment_352\" aria-describedby=\"caption-attachment-352\" style=\"width: 256px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/tile-example-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-352\" src=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/tile-example-1.png\" alt=\"Windows Live Tiles\" width=\"256\" height=\"175\" \/><\/a><figcaption id=\"caption-attachment-352\" class=\"wp-caption-text\">Windows Live Tiles<\/figcaption><\/figure>\n<p>Notice the Tiingo one? Yeah we like it it too \ud83d\ude42<\/p>\n<p>We&#8217;re going to cover how we got these going in our pure-Javascript implementation. It didn&#8217;t require any native coding which was nice. It turns out if you&#8217;re using Hosted Web Apps, which let you convert your Javascript web app into Windows app, <strong>Microsoft injects a Windows library that you can use to interact with Windows<\/strong>.<\/p>\n<p>This GitHub page does a good overview, but we&#8217;re going to go a little more in-depth. Still a good read-through:\u00a0<a href=\"https:\/\/microsoftedge.github.io\/WebAppsDocs\/en-US\/win10\/HWAfeatures.htm\" target=\"_blank\">https:\/\/microsoftedge.github.io\/WebAppsDocs\/en-US\/win10\/HWAfeatures.htm<\/a><\/p>\n<p>&nbsp;<\/p>\n<h3>Step 1 &#8211; Download the source code\/generate the manifest<\/h3>\n<p>You need to generate source code, or a manifest file for this to work. If you don&#8217;t know what it is (like me initially), you can use App Studio which has a wizard and takes care of this for you. Visit here:\u00a0<a href=\"http:\/\/appstudio.windows.com\/en-us\" target=\"_blank\">http:\/\/appstudio.windows.com\/en-us<\/a>, make an account, and then created a &#8220;Hosted Web App&#8221; via this URL:\u00a0<a href=\"http:\/\/appstudio.windows.com\/projects\/create\" target=\"_blank\">http:\/\/appstudio.windows.com\/projects\/create<\/a><\/p>\n<p>When you&#8217;re done with the wizard, click &#8220;Generate&#8221; and download the Source code.<\/p>\n<p><a href=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/sourcecode-gradient.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-354\" src=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/sourcecode-gradient.png\" alt=\"Download Source Code\" width=\"483\" height=\"332\" \/><\/a><\/p>\n<p>Once you the source code, you can open it up via Visual Studio. You can download the Community edition for $0 here:\u00a0<a href=\"https:\/\/www.visualstudio.com\/en-us\/products\/visual-studio-community-vs.aspx\" target=\"_blank\">https:\/\/www.visualstudio.com\/en-us\/products\/visual-studio-community-vs.aspx<\/a><\/p>\n<h3>Step 2\u00a0&#8211;\u00a0Choose a Template<\/h3>\n<p>Microsoft has pre-generated templates that you can &#8220;fill-in.&#8221; In reality, these are XML templates where you can change the content and then update it. So we&#8217;re going to choose a template, populate it with data, and then send the notification update to the Windows Notification library<\/p>\n<p>Find a template that you like. We&#8217;re going to change the content in them to present the data that we want. You can see the catalog here: \u00a0<a href=\"https:\/\/msdn.microsoft.com\/en-us\/library\/hh761491.aspx\" target=\"_blank\">https:\/\/msdn.microsoft.com\/en-us\/library\/hh761491.aspx<\/a><\/p>\n<p>For Tiingo, we went with\u00a0<strong>tileWide310x150Text05<\/strong>\u00a0. Keep track of this &#8220;identifier&#8221; code as we will need it in our javascript code.<\/p>\n<p>I like the idea of clean, text and for financial data images are not as necessary. Maybe later we will include them for news stories, but first I wanted to include text.<\/p>\n<p>Once you choose the template, you can scroll down and see the XML. For\u00a0<strong>tileWide310x150Text05<\/strong>\u00a0 it looked like (taken from MSFT&#8217;s website):<\/p>\n<pre>&lt;tile&gt;\n  &lt;visual&gt;\n    &lt;binding template=\"TileWideText05\"&gt;\n      &lt;text id=\"1\"&gt;Text Field 1&lt;\/text&gt;\n      &lt;text id=\"2\"&gt;Text Field 2&lt;\/text&gt;\n      &lt;text id=\"3\"&gt;Text Field 3&lt;\/text&gt;\n      &lt;text id=\"4\"&gt;Text Field 4&lt;\/text&gt;\n      &lt;text id=\"5\"&gt;Text Field 5&lt;\/text&gt;\n    &lt;\/binding&gt;  \n  &lt;\/visual&gt;\n&lt;\/tile&gt;\n\n&lt;tile&gt;\n  &lt;visual version=\"2\"&gt;\n    &lt;binding template=\"TileWide310x150Text05\" fallback=\"TileWideText05\"&gt;\n      &lt;text id=\"1\"&gt;Text Field 1&lt;\/text&gt;\n      &lt;text id=\"2\"&gt;Text Field 2&lt;\/text&gt;\n      &lt;text id=\"3\"&gt;Text Field 3&lt;\/text&gt;\n      &lt;text id=\"4\"&gt;Text Field 4&lt;\/text&gt;\n      &lt;text id=\"5\"&gt;Text Field 5&lt;\/text&gt;\n    &lt;\/binding&gt;  \n  &lt;\/visual&gt;\n&lt;\/tile&gt;<\/pre>\n<h3><\/h3>\n<h3>Step 3\u00a0&#8211; Update the tile\u00a0in your JS code<\/h3>\n<p>Next we have to tell Windows when to update the data and what to do.<br \/>\nWe used this snippet, check the comments to see what each line means:<\/p>\n<pre>\/\/See if the Windows namespace is available (injected by Windows for HWAs)\nif (typeof Windows !== 'undefined' &amp;&amp; typeof Windows.UI !== 'undefined' &amp;&amp;\ntypeof Windows.UI.Notifications !== 'undefined') { \n     \n     \/\/setting dummy market data\n     var marketData = {spy : {returns : .05}, newsLinks: [{title: \"Headline 1\"}, {title: \"Headline 2\"} ]};\n     \/\/Get the Windows UI Notifications\n     var windowsNotifications = Windows.UI.Notifications;\n \n     \/\/Load in the template, which will contain the XML we can modify\n     var tileTemplate = windowsNotifications.TileTemplateType.tileWide310x150Text05;\n     var tileXML = windowsNotifications.TileUpdateManager.getTemplateContent(tileTemplate);\n \n     \/\/We now get all the text elements and append text nodes\n     var tileText = tileXML.getElementsByTagName('text');\n     \/\/First line will be a header\n     tileText[0].appendChild(tileXML.createTextNode(\"Market Snapshot\"));\n \n     \/\/Next we get the returns and append a \"+\" sign if the return is &gt;0. For negative numbers, JS defaults to appending a \"-\"\n     if(marketData.spy.returns &gt; 0) \n          tileText[1].appendChild(tileXML.createTextNode(\"S&amp;P 500 +\" + (marketData.spy.returns * 100).toFixed(2).toString() + \"%\"));\n     else\n          tileText[1].appendChild(tileXML.createTextNode(\"S&amp;P 500 \" + (marketData.spy.returns * 100).toFixed(2).toString() + \"%\"));\n \n     \/\/Next we add the news headlines\n     tileText[2].appendChild(tileXML.createTextNode(marketData.newsLinks[0].title));\n     tileText[3].appendChild(tileXML.createTextNode(marketData.newsLinks[1].title));\n \n     \/\/Create the TileNotification, passing our modified XML template and then send the update command\n     var tileNotification = new windowsNotifications.TileNotification(tileXML);\n     var tileUpdater = windowsNotifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification);\n }<\/pre>\n<p>Since we are using Angular, we wrapped the initial call in a<strong> $timeout()<\/strong> and then set an<strong> $interval<\/strong> to get the <strong>marketData\u00a0<\/strong>JSON object from our back-end every 30 seconds.<\/p>\n<p>&nbsp;<\/p>\n<h3>Step 4\u00a0&#8211;\u00a0Test the app by running it in Visual Studio, pin the app to your start menu, and voila!<\/h3>\n<p>Beautiful!<\/p>\n<figure id=\"attachment_357\" aria-describedby=\"caption-attachment-357\" style=\"width: 317px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/example-finished.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-357 size-full\" src=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/example-finished.png\" alt=\"Our Example Tile\" width=\"317\" height=\"211\" \/><\/a><figcaption id=\"caption-attachment-357\" class=\"wp-caption-text\">Our Example Tile<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>For those of \u00a0you who have been keeping up with this blog, the Javascript container process is something I&#8217;ve been following closely for the past decade.\u00a0Earlier in the year, Peter Kruger from Microsoft reached out asking if I could test their latest implementation, which we presented at \/\/Build. It was an honor, and since then [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":618,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"osom_blocks_metabox":"","inline_featured_image":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[6],"tags":[],"class_list":["post-617","post","type-post","status-publish","format-standard","has-post-thumbnail","category-engineering","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to set up Hosted Web Apps with Windows Live Tiles - Tiingo Blog<\/title>\n<meta name=\"description\" content=\"This tutorial teaches you how to set up hosted web apps with Windows live tiles, giving your App a native dynamic experience with Windows tiles.\" \/>\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.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to set up Hosted Web Apps with Windows Live Tiles\" \/>\n<meta property=\"og:description\" content=\"This tutorial teaches you how to set up hosted web apps with Windows live tiles, giving your App a native dynamic experience with Windows tiles.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\" \/>\n<meta property=\"og:site_name\" content=\"Tiingo Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tiingofinance\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-01T14:38:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/tile-example-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"317\" \/>\n\t<meta property=\"og:image:height\" content=\"211\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Rishi S.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tiingofinance\" \/>\n<meta name=\"twitter:site\" content=\"@tiingofinance\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rishi S.\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\"},\"author\":{\"name\":\"Rishi S.\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/54fc93e1626ed221a37fcfddb597c3d6\"},\"headline\":\"How to set up Hosted Web Apps with Windows Live Tiles\",\"datePublished\":\"2016-06-01T14:38:28+00:00\",\"dateModified\":\"2016-06-01T14:38:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\"},\"wordCount\":741,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/#organization\"},\"articleSection\":[\"Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\",\"url\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\",\"name\":\"How to set up Hosted Web Apps with Windows Live Tiles - Tiingo Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/#website\"},\"datePublished\":\"2016-06-01T14:38:28+00:00\",\"dateModified\":\"2016-06-01T14:38:28+00:00\",\"description\":\"This tutorial teaches you how to set up hosted web apps with Windows live tiles, giving your App a native dynamic experience with Windows tiles.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.tiingo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set up Hosted Web Apps with Windows Live Tiles\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/#website\",\"url\":\"https:\/\/www.tiingo.com\/blog\/\",\"name\":\"Tiingo API Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.tiingo.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/#organization\",\"name\":\"Tiingo.com\",\"url\":\"https:\/\/www.tiingo.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/api.tiingo.com\/blog\/wp-content\/uploads\/2023\/05\/purple-for-light-bg.svg\",\"contentUrl\":\"https:\/\/api.tiingo.com\/blog\/wp-content\/uploads\/2023\/05\/purple-for-light-bg.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"Tiingo.com\"},\"image\":{\"@id\":\"https:\/\/www.tiingo.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tiingofinance\/\",\"https:\/\/twitter.com\/tiingofinance\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/54fc93e1626ed221a37fcfddb597c3d6\",\"name\":\"Rishi S.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g\",\"caption\":\"Rishi S.\"},\"description\":\"Rishi Singh is the CEO of Tiingo.com. A prior algorithmic and quant researcher, Rishi started Tiingo.com to modernize the financial data vertical by focusing on data acquisition, cleansing, aggregation, innovation, and distribution of data.\",\"sameAs\":[\"http:\/\/www.tiingo.com\"],\"url\":\"https:\/\/www.tiingo.com\/blog\/author\/rishi-s\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to set up Hosted Web Apps with Windows Live Tiles - Tiingo Blog","description":"This tutorial teaches you how to set up hosted web apps with Windows live tiles, giving your App a native dynamic experience with Windows tiles.","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.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/","og_locale":"en_US","og_type":"article","og_title":"How to set up Hosted Web Apps with Windows Live Tiles","og_description":"This tutorial teaches you how to set up hosted web apps with Windows live tiles, giving your App a native dynamic experience with Windows tiles.","og_url":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/","og_site_name":"Tiingo Blog","article_publisher":"https:\/\/www.facebook.com\/tiingofinance\/","article_published_time":"2016-06-01T14:38:28+00:00","og_image":[{"width":317,"height":211,"url":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/tile-example-1.png","type":"image\/png"}],"author":"Rishi S.","twitter_card":"summary_large_image","twitter_creator":"@tiingofinance","twitter_site":"@tiingofinance","twitter_misc":{"Written by":"Rishi S.","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#article","isPartOf":{"@id":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/"},"author":{"name":"Rishi S.","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/54fc93e1626ed221a37fcfddb597c3d6"},"headline":"How to set up Hosted Web Apps with Windows Live Tiles","datePublished":"2016-06-01T14:38:28+00:00","dateModified":"2016-06-01T14:38:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/"},"wordCount":741,"commentCount":0,"publisher":{"@id":"https:\/\/www.tiingo.com\/blog\/#organization"},"articleSection":["Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/","url":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/","name":"How to set up Hosted Web Apps with Windows Live Tiles - Tiingo Blog","isPartOf":{"@id":"https:\/\/www.tiingo.com\/blog\/#website"},"datePublished":"2016-06-01T14:38:28+00:00","dateModified":"2016-06-01T14:38:28+00:00","description":"This tutorial teaches you how to set up hosted web apps with Windows live tiles, giving your App a native dynamic experience with Windows tiles.","breadcrumb":{"@id":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.tiingo.com\/blog\/set-hosted-web-apps-hwas-live-tiles-windows-apps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.tiingo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set up Hosted Web Apps with Windows Live Tiles"}]},{"@type":"WebSite","@id":"https:\/\/www.tiingo.com\/blog\/#website","url":"https:\/\/www.tiingo.com\/blog\/","name":"Tiingo API Blog","description":"","publisher":{"@id":"https:\/\/www.tiingo.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.tiingo.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.tiingo.com\/blog\/#organization","name":"Tiingo.com","url":"https:\/\/www.tiingo.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/api.tiingo.com\/blog\/wp-content\/uploads\/2023\/05\/purple-for-light-bg.svg","contentUrl":"https:\/\/api.tiingo.com\/blog\/wp-content\/uploads\/2023\/05\/purple-for-light-bg.svg","width":"1024","height":"1024","caption":"Tiingo.com"},"image":{"@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tiingofinance\/","https:\/\/twitter.com\/tiingofinance"]},{"@type":"Person","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/54fc93e1626ed221a37fcfddb597c3d6","name":"Rishi S.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g","caption":"Rishi S."},"description":"Rishi Singh is the CEO of Tiingo.com. A prior algorithmic and quant researcher, Rishi started Tiingo.com to modernize the financial data vertical by focusing on data acquisition, cleansing, aggregation, innovation, and distribution of data.","sameAs":["http:\/\/www.tiingo.com"],"url":"https:\/\/www.tiingo.com\/blog\/author\/rishi-s\/"}]}},"featured_image_src":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/tile-example-1.png","featured_image_src_square":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2016\/06\/tile-example-1.png","author_info":{"display_name":"Rishi S.","author_link":"https:\/\/www.tiingo.com\/blog\/author\/rishi-s\/"},"_links":{"self":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts\/617","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/comments?post=617"}],"version-history":[{"count":0,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts\/617\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/media\/618"}],"wp:attachment":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/media?parent=617"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/categories?post=617"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/tags?post=617"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}