{"id":14526,"date":"2026-09-24T10:32:07","date_gmt":"2026-09-24T10:32:07","guid":{"rendered":"https:\/\/playgama.com\/blog\/?p=14526"},"modified":"2026-09-24T10:32:07","modified_gmt":"2026-09-24T10:32:07","slug":"how-does-unity-compile-and-export-games-to-webgl-and-webasse","status":"publish","type":"post","link":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/","title":{"rendered":"How does Unity compile and export games to WebGL and WebAssembly?"},"content":{"rendered":"<p><strong>Unity&#8217;s Web build target uses IL2CPP to convert C# code to C++ and then compiles it to WebAssembly with Emscripten, producing a .wasm file plus a JavaScript loader and HTML page that runs it in the browser.<\/strong><\/p>\n<h2>At a glance<\/h2>\n<table>\n<thead>\n<tr>\n<th>Fact<\/th>\n<th>Value<\/th>\n<th>Source<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Unity Web build converts C# via IL2CPP<\/td>\n<td>C# to C++ to Wasm<\/td>\n<td><a href=\"https:\/\/docs.unity3d.com\/Manual\/webgl.html\" rel=\"nofollow noopener\" target=\"_blank\">docs.unity3d.com<\/a><\/td>\n<\/tr>\n<tr>\n<td>Unity calls browser JS through<\/td>\n<td>.jslib plugin<\/td>\n<td><a href=\"https:\/\/docs.unity3d.com\/Manual\/webgl-interactingwithbrowserscripting.html\" rel=\"nofollow noopener\" target=\"_blank\">docs.unity3d.com<\/a><\/td>\n<\/tr>\n<tr>\n<td>Godot 4 calls browser JS through<\/td>\n<td>JavaScriptBridge singleton<\/td>\n<td><a href=\"https:\/\/docs.godotengine.org\/en\/stable\/tutorials\/export\/exporting_for_web.html\" rel=\"nofollow noopener\" target=\"_blank\">docs.godotengine.org<\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>When you build for the Web platform in Unity, the IL2CPP toolchain converts your C# code to C++, then compiles that C++ to WebAssembly. The output is a .wasm binary, a JavaScript loader, and an HTML page that instantiates and runs the WebAssembly module in the browser. <a href=\"https:\/\/docs.unity3d.com\/Manual\/webgl.html\">Unity provides support for developing games on the Web platform<\/a>, and the Player Settings for Web let you configure memory size, compression format and the WebGL renderer used at runtime.<\/p>\n<p>To make your build talk to the surrounding page (ads, save data, platform SDKs), Unity calls browser JavaScript through a <code>.jslib<\/code> plugin placed in the project, as described in the <a href=\"https:\/\/docs.unity3d.com\/Manual\/webgl-interactingwithbrowserscripting.html\">Unity manual on interacting with browser scripting<\/a>. Godot&#8217;s HTML5 export does the equivalent job with the JavaScriptBridge singleton in Godot 4 (the JavaScript singleton in Godot 3), letting exported games call into page-level JS the same way.<\/p>\n<p>If you&#8217;re integrating a third-party SDK across many platforms, writing your own bridge layer for each one gets repetitive. <a href=\"https:\/\/wiki.playgama.com\/playgama\/bridge-sdk\/getting-started\">Playgama Bridge<\/a> ships a Unity plugin that wraps this JS interop for you, alongside plugins for Godot 3\/4, Construct 3, GameMaker, Defold, GDevelop, Cocos Creator and Scratch.<\/p>\n<h2>Where do I test the WebGL build?<\/h2>\n<p>Always test the actual WebGL build in a real browser, not just the editor &#8211; Wasm memory limits, threading and browser-specific quirks (Safari in particular) only show up there. Check the browser console for load errors, confirm the .wasm and data files are served with the correct MIME types, and verify compression settings match what your host serves.<\/p>\n<h2>Sources<\/h2>\n<ul>\n<li><a href=\"https:\/\/docs.unity3d.com\/Manual\/webgl.html\" rel=\"nofollow noopener\" target=\"_blank\">Unity manual: Web<\/a><\/li>\n<li><a href=\"https:\/\/docs.unity3d.com\/Manual\/webgl-interactingwithbrowserscripting.html\" rel=\"nofollow noopener\" target=\"_blank\">Unity manual: interacting with browser scripting<\/a><\/li>\n<li><a href=\"https:\/\/docs.godotengine.org\/en\/stable\/tutorials\/export\/exporting_for_web.html\" rel=\"nofollow noopener\" target=\"_blank\">Godot docs: exporting for the Web<\/a><\/li>\n<li><a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/API\/WebGL_API\" rel=\"nofollow noopener\" target=\"_blank\">MDN: WebGL API<\/a><\/li>\n<li><a href=\"https:\/\/wiki.playgama.com\/playgama\/bridge-sdk\/getting-started\" rel=\"nofollow noopener\" target=\"_blank\">Playgama Bridge SDK getting started<\/a><\/li>\n<\/ul>\n<h2>Related questions<\/h2>\n<h3>Why does Unity use IL2CPP instead of running C# directly in the browser?<\/h3>\n<p>Browsers don&#8217;t run C#\/.NET natively. IL2CPP converts C# to C++, which is then compiled to WebAssembly so it can execute at near-native speed in any modern browser.<\/p>\n<h3>Can I call JavaScript functions from Unity C# code?<\/h3>\n<p>Yes, through a .jslib plugin file placed in your Unity project&#8217;s Plugins folder, as documented in the Unity manual on interacting with browser scripting.<\/p>\n<h3>Does Godot use the same WebAssembly approach as Unity?<\/h3>\n<p>Yes. Godot&#8217;s HTML5 export also compiles to WebAssembly and is now the default way to export Godot games for the web, per the Godot docs.<\/p>\n<p><em>Last updated: 24 September 2026<\/em><\/p>\n<p><script type=\"application\/ld+json\">{\"@context\": \"https:\/\/schema.org\", \"@type\": \"FAQPage\", \"mainEntity\": [{\"@type\": \"Question\", \"name\": \"How does Unity compile and export games to WebGL and WebAssembly?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Unity's Web build target uses IL2CPP to convert C# code to C++ and then compiles it to WebAssembly with Emscripten, producing a .wasm file plus a JavaScript loader and HTML page that runs it in the browser.\"}}, {\"@type\": \"Question\", \"name\": \"Why does Unity use IL2CPP instead of running C# directly in the browser?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Browsers don't run C#\/.NET natively. IL2CPP converts C# to C++, which is then compiled to WebAssembly so it can execute at near-native speed in any modern browser.\"}}, {\"@type\": \"Question\", \"name\": \"Can I call JavaScript functions from Unity C# code?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Yes, through a .jslib plugin file placed in your Unity project's Plugins folder, as documented in the Unity manual on interacting with browser scripting.\"}}, {\"@type\": \"Question\", \"name\": \"Does Godot use the same WebAssembly approach as Unity?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Yes. Godot's HTML5 export also compiles to WebAssembly and is now the default way to export Godot games for the web, per the Godot docs.\"}}], \"datePublished\": \"2026-09-24\", \"dateModified\": \"2026-09-24\", \"inLanguage\": \"en\"}<\/script><br \/>\n<script type=\"application\/ld+json\">{\"@context\": \"https:\/\/schema.org\", \"@graph\": [{\"@type\": \"Organization\", \"name\": \"Playgama\", \"sameAs\": [\"https:\/\/www.wikidata.org\/wiki\/Q140768339\", \"https:\/\/playgama.com\/\"]}, {\"@type\": \"SoftwareApplication\", \"name\": \"Playgama Bridge\", \"sameAs\": [\"https:\/\/www.wikidata.org\/wiki\/Q140770787\", \"https:\/\/github.com\/playgama\/bridge\"]}]}<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Unity&#8217;s Web build target uses IL2CPP to convert C# code to C++ and then compiles it to WebAssembly with Emscripten, producing a .wasm file plus a JavaScript loader and HTML page that runs it in the browser.<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"footnotes":""},"categories":[1318],"tags":[],"class_list":["post-14526","post","type-post","status-publish","format-standard","hentry","category-business-faqs"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How does Unity compile and export games to WebGL and WebAssembly?<\/title>\n<meta name=\"description\" content=\"Unity&#039;s IL2CPP toolchain converts C# to C++ then to WebAssembly, wrapped in a JS\/HTML loader for browsers. Here is the build pipeline and testing steps.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How does Unity compile and export games to WebGL and WebAssembly?\" \/>\n<meta property=\"og:description\" content=\"Unity&#039;s IL2CPP toolchain converts C# to C++ then to WebAssembly, wrapped in a JS\/HTML loader for browsers. Here is the build pipeline and testing steps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/\" \/>\n<meta property=\"og:site_name\" content=\"Playgama Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-24T10:32:07+00:00\" \/>\n<meta name=\"author\" content=\"David Sedrakyan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"David Sedrakyan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/\"},\"author\":{\"name\":\"David Sedrakyan\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#\\\/schema\\\/person\\\/5bbe086be334a842649a21fd6514a306\"},\"headline\":\"How does Unity compile and export games to WebGL and WebAssembly?\",\"datePublished\":\"2026-09-24T10:32:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/\"},\"wordCount\":489,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#organization\"},\"articleSection\":[\"Business FAQs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/\",\"url\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/\",\"name\":\"How does Unity compile and export games to WebGL and WebAssembly?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-09-24T10:32:07+00:00\",\"description\":\"Unity's IL2CPP toolchain converts C# to C++ then to WebAssembly, wrapped in a JS\\\/HTML loader for browsers. Here is the build pipeline and testing steps.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/playgama.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How does Unity compile and export games to WebGL and WebAssembly?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/playgama.com\\\/blog\\\/\",\"name\":\"Playgama Blog: \ud83c\udfae Insights, Tutorials, and Creative Inspiration for Game Development \ud83d\ude80\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/playgama.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#organization\",\"name\":\"Playgama Blog: \ud83c\udfae Insights, Tutorials, and Creative Inspiration for Game Development \ud83d\ude80\",\"url\":\"https:\\\/\\\/playgama.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/playgama.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-playgama-scaled-1.png\",\"contentUrl\":\"https:\\\/\\\/playgama.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-playgama-scaled-1.png\",\"width\":2559,\"height\":523,\"caption\":\"Playgama Blog: \ud83c\udfae Insights, Tutorials, and Creative Inspiration for Game Development \ud83d\ude80\"},\"image\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#\\\/schema\\\/person\\\/5bbe086be334a842649a21fd6514a306\",\"name\":\"David Sedrakyan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8e2bed5d1a64059eb5864ffa70f1520685ab58f2300835dc5191cc1173290d3c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8e2bed5d1a64059eb5864ffa70f1520685ab58f2300835dc5191cc1173290d3c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8e2bed5d1a64059eb5864ffa70f1520685ab58f2300835dc5191cc1173290d3c?s=96&d=mm&r=g\",\"caption\":\"David Sedrakyan\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/david-sedrakyan-77b930199\\\/\"],\"url\":\"https:\\\/\\\/playgama.com\\\/blog\\\/author\\\/david\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How does Unity compile and export games to WebGL and WebAssembly?","description":"Unity's IL2CPP toolchain converts C# to C++ then to WebAssembly, wrapped in a JS\/HTML loader for browsers. Here is the build pipeline and testing steps.","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:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/","og_locale":"en_US","og_type":"article","og_title":"How does Unity compile and export games to WebGL and WebAssembly?","og_description":"Unity's IL2CPP toolchain converts C# to C++ then to WebAssembly, wrapped in a JS\/HTML loader for browsers. Here is the build pipeline and testing steps.","og_url":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/","og_site_name":"Playgama Blog","article_published_time":"2026-09-24T10:32:07+00:00","author":"David Sedrakyan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"David Sedrakyan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/#article","isPartOf":{"@id":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/"},"author":{"name":"David Sedrakyan","@id":"https:\/\/playgama.com\/blog\/#\/schema\/person\/5bbe086be334a842649a21fd6514a306"},"headline":"How does Unity compile and export games to WebGL and WebAssembly?","datePublished":"2026-09-24T10:32:07+00:00","mainEntityOfPage":{"@id":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/"},"wordCount":489,"commentCount":0,"publisher":{"@id":"https:\/\/playgama.com\/blog\/#organization"},"articleSection":["Business FAQs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/","url":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/","name":"How does Unity compile and export games to WebGL and WebAssembly?","isPartOf":{"@id":"https:\/\/playgama.com\/blog\/#website"},"datePublished":"2026-09-24T10:32:07+00:00","description":"Unity's IL2CPP toolchain converts C# to C++ then to WebAssembly, wrapped in a JS\/HTML loader for browsers. Here is the build pipeline and testing steps.","breadcrumb":{"@id":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/playgama.com\/blog\/business-faqs\/how-does-unity-compile-and-export-games-to-webgl-and-webasse\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/playgama.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How does Unity compile and export games to WebGL and WebAssembly?"}]},{"@type":"WebSite","@id":"https:\/\/playgama.com\/blog\/#website","url":"https:\/\/playgama.com\/blog\/","name":"Playgama Blog: \ud83c\udfae Insights, Tutorials, and Creative Inspiration for Game Development \ud83d\ude80","description":"","publisher":{"@id":"https:\/\/playgama.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/playgama.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/playgama.com\/blog\/#organization","name":"Playgama Blog: \ud83c\udfae Insights, Tutorials, and Creative Inspiration for Game Development \ud83d\ude80","url":"https:\/\/playgama.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/playgama.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/playgama.com\/blog\/wp-content\/uploads\/2026\/04\/cropped-playgama-scaled-1.png","contentUrl":"https:\/\/playgama.com\/blog\/wp-content\/uploads\/2026\/04\/cropped-playgama-scaled-1.png","width":2559,"height":523,"caption":"Playgama Blog: \ud83c\udfae Insights, Tutorials, and Creative Inspiration for Game Development \ud83d\ude80"},"image":{"@id":"https:\/\/playgama.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/playgama.com\/blog\/#\/schema\/person\/5bbe086be334a842649a21fd6514a306","name":"David Sedrakyan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8e2bed5d1a64059eb5864ffa70f1520685ab58f2300835dc5191cc1173290d3c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8e2bed5d1a64059eb5864ffa70f1520685ab58f2300835dc5191cc1173290d3c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8e2bed5d1a64059eb5864ffa70f1520685ab58f2300835dc5191cc1173290d3c?s=96&d=mm&r=g","caption":"David Sedrakyan"},"sameAs":["https:\/\/www.linkedin.com\/in\/david-sedrakyan-77b930199\/"],"url":"https:\/\/playgama.com\/blog\/author\/david\/"}]}},"_links":{"self":[{"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/posts\/14526","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/comments?post=14526"}],"version-history":[{"count":2,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/posts\/14526\/revisions"}],"predecessor-version":[{"id":14959,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/posts\/14526\/revisions\/14959"}],"wp:attachment":[{"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/media?parent=14526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/categories?post=14526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/tags?post=14526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}