{"id":1171,"date":"2015-07-20T20:15:45","date_gmt":"2015-07-20T18:15:45","guid":{"rendered":"http:\/\/www.robinglauser.ch\/blog\/?p=1171"},"modified":"2016-12-01T17:02:07","modified_gmt":"2016-12-01T15:02:07","slug":"steambuddies-robinglauser-ch-find-steam-games-you-can-play","status":"publish","type":"post","link":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/","title":{"rendered":"steambuddies.robinglauser.ch &#8211; Find steam games you can play"},"content":{"rendered":"<h2>What this project is about<\/h2>\n<p>When my friends come over to my place or when I want to play games online with them, there&#8217;s always the question:<\/p>\n<blockquote><p>What game should we play?<\/p><\/blockquote>\n<p>I&#8217;ve created this project to answer this question for once for all. You may already have heard of the website\u00a0<a href=\"http:\/\/steamparty.info\/\" target=\"_blank\">steamparty.info<\/a>, which does something similar.<\/p>\n<p>The problem with their solution is that they don&#8217;t filter games based on if they have\u00a0<strong>online<\/strong> multiplayer or <strong>local<\/strong> multiplayer.<\/p>\n<p>This is why I&#8217;ve created the website\u00a0<a href=\"http:\/\/steambuddies.robinglauser.ch\">steambuddies.robinglauser.ch<\/a> which offers a solution to all those problems on a really simple and clean web-interface.<\/p>\n<h2>Technologies used in this project<\/h2>\n<p>The web-application consists of two parts: A simple HTTP API built in PHP which provides the access to steam API and a front-end built with AngularJS.<\/p>\n<p>The PHP API is built with <a href=\"http:\/\/silex.sensiolabs.org\/\" target=\"_blank\">Silex<\/a> which is perfect for small single page applications. I use it to create a simple JSON API which connects to the Steam API and caches the game information.<\/p>\n<p>In the AngularJS part I&#8217;ve created a simple paging system with which I can easily change the slides.<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\n  $scope.activeSlide = 0;\r\n\r\n  $scope.nextSlide = function () {\r\n    $scope.goToSlide($scope.activeSlide + 1);\r\n  };\r\n\r\n  $scope.goToSlide = function (slide) {\r\n    $scope.activeSlide = slide;\r\n  };\r\n\r\n<\/pre>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;div class=&quot;localoronline slide slide-0&quot; data-ng-class=&quot;activeSlide == 0 ? 'active' : ''&quot;&gt;\r\n&lt;div class=&quot;container&quot;&gt;\r\n&lt;h1&gt;Would you like to play on a&lt;\/h1&gt;\r\n&lt;button data-ng-click=&quot;setMode(LOCAL_MODE)&quot;&gt;Single PC&lt;\/button&gt;\r\nor\r\n&lt;button data-ng-click=&quot;setMode(ONLINE_MODE)&quot;&gt;Online&lt;\/button&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=&quot;howmanyplayers slide slide-1&quot; data-ng-class=&quot;activeSlide == 1 ? 'active' : ''&quot;&gt;\r\n&lt;div class=&quot;container&quot;&gt;\r\n&lt;h1&gt;How many players?&lt;\/h1&gt;\r\n&lt;button data-ng-repeat=&quot;n in &#x5B;1,2,3,4,5,6,7,8]&quot; data-ng-click=&quot;setPlayers(n)&quot;&gt;{{n}}&lt;\/button&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>For the API usage I&#8217;ve created a factory with Angular Js.<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\n\r\napp.factory('steamBuddies', function ($http, $q) {\r\n  return {\r\n    getGames: function (friends) {\r\n      return $q(function (resolve, reject) {\r\n        $http.post('\/findmatches', {steam: friends}).then(function (response) {\r\n          if (response.data.status == 'error') {\r\n            reject(response.data.response);\r\n          }\r\n          else {\r\n            resolve(response.data.response);\r\n          }\r\n        });\r\n      });\r\n    }\r\n  };\r\n});\r\n\r\n<\/pre>\n<p>With this I can simply call the API by using the following snippet.<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\n $scope.loadGame = function () {\r\n    $scope.lastGame = $scope.game.id;\r\n    $scope.game = '';\r\n    $scope.error = '';\r\n    steamBuddies.getGames($scope.players).then(function (d) {\r\n      if ($scope.lastGame == d.id) {\r\n        $scope.loadGame();\r\n      }\r\n      else {\r\n        $scope.game = d;\r\n      }\r\n    }, function (rejected) {\r\n      $scope.error = rejected;\r\n    });\r\n  };\r\n<\/pre>\n<h2>How the project looks for the end user<\/h2>\n<p>When the user first loads the page he can choose whether he wants to play on a single computer or if he wants to play online with multiple players.<\/p>\n<p>After the user enters the steam id for all players the api find games you can play.<\/p>\n<p>Those will either be games all players have or games with local ko-op\u00a0if you choose to play locally.<\/p>\n<p>Bellow you can see how it works as a animation.<\/p>\n<p><a href=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steamgames.gif\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1187\" src=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steamgames.gif\" alt=\"steamgames\" width=\"1219\" height=\"610\" \/><\/a><\/p>\n<p>If you want to test it out yourself, you can do that at\u00a0<a href=\"http:\/\/steambuddies.robinglauser.ch\/\">http:\/\/steambuddies.robinglauser.ch\/<\/a><\/p>\n<p>Don&#8217;t hesitate to leave a comment if you have any feedback, ideas or new improvements.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">What this project is about When my friends come over to my place or when I want to play games online with them, there&#8217;s always the question: What game should we play? I&#8217;ve created this project to answer this question for once for all. You may already have heard of the website\u00a0steamparty.info, which does something similar. The problem with their &#8230; <a class=\"read-more\" href=\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":1172,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[123,45,38],"tags":[122,121],"class_list":["post-1171","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-case-studies","category-development","category-gaming","tag-gaming","tag-steam"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>steambuddies.robinglauser.ch - Find steam games you can play - Robin Glauser<\/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.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"steambuddies.robinglauser.ch - Find steam games you can play - Robin Glauser\" \/>\n<meta property=\"og:description\" content=\"What this project is about When my friends come over to my place or when I want to play games online with them, there&#8217;s always the question: What game should we play? I&#8217;ve created this project to answer this question for once for all. You may already have heard of the website\u00a0steamparty.info, which does something similar. The problem with their ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\" \/>\n<meta property=\"og:site_name\" content=\"Robin Glauser\" \/>\n<meta property=\"article:published_time\" content=\"2015-07-20T18:15:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-12-01T15:02:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Robin Glauser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:site\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Robin Glauser\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\"},\"author\":{\"name\":\"Robin Glauser\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\"},\"headline\":\"steambuddies.robinglauser.ch &#8211; Find steam games you can play\",\"datePublished\":\"2015-07-20T18:15:45+00:00\",\"dateModified\":\"2016-12-01T15:02:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\"},\"wordCount\":570,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\"},\"image\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png\",\"keywords\":[\"Gaming\",\"steam\"],\"articleSection\":[\"Case Studies\",\"Development\",\"Gaming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\",\"name\":\"steambuddies.robinglauser.ch - Find steam games you can play - Robin Glauser\",\"isPartOf\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png\",\"datePublished\":\"2015-07-20T18:15:45+00:00\",\"dateModified\":\"2016-12-01T15:02:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png\",\"contentUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.robinglauser.ch\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"steambuddies.robinglauser.ch &#8211; Find steam games you can play\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#website\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/\",\"name\":\"Robin Glauser\",\"description\":\"My Blog about Development, Design and my random thoughts.\",\"publisher\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.robinglauser.ch\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\",\"name\":\"Robin Glauser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\",\"contentUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\",\"width\":800,\"height\":530,\"caption\":\"Robin Glauser\"},\"logo\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\"},\"description\":\"I'm a web developer.\",\"sameAs\":[\"https:\/\/www.robinglauser.ch\",\"https:\/\/www.instagram.com\/robinglauser\/\",\"https:\/\/x.com\/robinglauser\"],\"url\":\"https:\/\/www.robinglauser.ch\/blog\/author\/robin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"steambuddies.robinglauser.ch - Find steam games you can play - Robin Glauser","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.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/","og_locale":"en_US","og_type":"article","og_title":"steambuddies.robinglauser.ch - Find steam games you can play - Robin Glauser","og_description":"What this project is about When my friends come over to my place or when I want to play games online with them, there&#8217;s always the question: What game should we play? I&#8217;ve created this project to answer this question for once for all. You may already have heard of the website\u00a0steamparty.info, which does something similar. The problem with their ... Read More","og_url":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/","og_site_name":"Robin Glauser","article_published_time":"2015-07-20T18:15:45+00:00","article_modified_time":"2016-12-01T15:02:07+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png","type":"image\/png"}],"author":"Robin Glauser","twitter_card":"summary_large_image","twitter_creator":"@robinglauser","twitter_site":"@robinglauser","twitter_misc":{"Written by":"Robin Glauser","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#article","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/"},"author":{"name":"Robin Glauser","@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"headline":"steambuddies.robinglauser.ch &#8211; Find steam games you can play","datePublished":"2015-07-20T18:15:45+00:00","dateModified":"2016-12-01T15:02:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/"},"wordCount":570,"commentCount":0,"publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png","keywords":["Gaming","steam"],"articleSection":["Case Studies","Development","Gaming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/","url":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/","name":"steambuddies.robinglauser.ch - Find steam games you can play - Robin Glauser","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png","datePublished":"2015-07-20T18:15:45+00:00","dateModified":"2016-12-01T15:02:07+00:00","breadcrumb":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#primaryimage","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/07\/steambuddies-preview-Kopie.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/www.robinglauser.ch\/blog\/2015\/07\/20\/steambuddies-robinglauser-ch-find-steam-games-you-can-play\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.robinglauser.ch\/blog\/"},{"@type":"ListItem","position":2,"name":"steambuddies.robinglauser.ch &#8211; Find steam games you can play"}]},{"@type":"WebSite","@id":"https:\/\/www.robinglauser.ch\/blog\/#website","url":"https:\/\/www.robinglauser.ch\/blog\/","name":"Robin Glauser","description":"My Blog about Development, Design and my random thoughts.","publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.robinglauser.ch\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19","name":"Robin Glauser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","width":800,"height":530,"caption":"Robin Glauser"},"logo":{"@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg"},"description":"I'm a web developer.","sameAs":["https:\/\/www.robinglauser.ch","https:\/\/www.instagram.com\/robinglauser\/","https:\/\/x.com\/robinglauser"],"url":"https:\/\/www.robinglauser.ch\/blog\/author\/robin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/1171","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/comments?post=1171"}],"version-history":[{"count":22,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/1171\/revisions"}],"predecessor-version":[{"id":2479,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/1171\/revisions\/2479"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media\/1172"}],"wp:attachment":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media?parent=1171"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/categories?post=1171"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/tags?post=1171"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}