{"id":14540,"date":"2026-09-24T10:30:57","date_gmt":"2026-09-24T10:30:57","guid":{"rendered":"https:\/\/playgama.com\/blog\/?p=14540"},"modified":"2026-09-24T10:30:57","modified_gmt":"2026-09-24T10:30:57","slug":"what-are-the-best-practices-for-shareable-multiplayer-lobby","status":"publish","type":"post","link":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/","title":{"rendered":"What are the best practices for shareable multiplayer lobby invite links?"},"content":{"rendered":"<p><strong>Encode a short room code in the URL, validate and expire it server-side, let the client join automatically on load, and show a clear message if the room is full or gone. Use the host platform&#8217;s native share\/invite API where one exists instead of building your own.<\/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>Invite link should carry only a room code<\/td>\n<td>not full state<\/td>\n<td><a href=\"https:\/\/playgama.com\/developers\" rel=\"nofollow noopener\" target=\"_blank\">playgama.com<\/a><\/td>\n<\/tr>\n<tr>\n<td>Room state and expiry belong on the server<\/td>\n<td>not the URL<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>WebSockets used for live lobby sync<\/td>\n<td>persistent connection<\/td>\n<td><a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/API\/WebSockets_API\" rel=\"nofollow noopener\" target=\"_blank\">developer.mozilla.org<\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>A good lobby invite link is short, carries a room code as a URL parameter (not the full game state), and lets the server decide whether the room still exists, is full, or has expired before the client joins. Keep the client logic simple: read the code from the URL on load, call the server to validate it, then either auto-join the lobby or show a clear reason it failed (room full, host left, code expired).<\/p>\n<p>If you publish through Playgama using the Bridge SDK, one HTML5 build adapts to 25+ platforms.<\/p>\n<p>If you publish to multiple platforms, use platform-native invite and share dialogues where available so players can send room links directly through their friends lists.<\/p>\n<h2>What should the link itself look like?<\/h2>\n<ul>\n<li>Use a short, unguessable room code (not a sequential integer) as a query parameter, e.g. <code>?room=ab12cd<\/code>.<\/li>\n<li>Keep secrets &#8211; host permissions, private lobby passwords &#8211; off the URL; pass them after a validated handshake.<\/li>\n<li>Set a server-side expiry on the room, not just on the link, so old links fail cleanly instead of connecting to a dead session.<\/li>\n<li>Handle the &#8220;room full&#8221; and &#8220;room not found&#8221; cases explicitly in the UI rather than leaving the player on a blank screen.<\/li>\n<li>Keep the live lobby state synced over <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/API\/WebSockets_API\">WebSockets<\/a> rather than polling, so joins and leaves show up instantly for everyone already in the lobby.<\/li>\n<li>Test the link cold: open it in a fresh browser tab or incognito window, not just by clicking &#8220;copy&#8221; in the same session.<\/li>\n<\/ul>\n<h2>Sources<\/h2>\n<ul>\n<li><a href=\"https:\/\/playgama.com\/developers\" rel=\"nofollow noopener\" target=\"_blank\">Playgama for developers<\/a><\/li>\n<li><a href=\"https:\/\/wiki.playgama.com\/playgama\/bridge-sdk-v1\/bridge-sdk\/api\/social\" rel=\"nofollow noopener\" target=\"_blank\">Playgama wiki: Social<\/a><\/li>\n<li><a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/API\/WebSockets_API\" rel=\"nofollow noopener\" target=\"_blank\">MDN: WebSockets API<\/a><\/li>\n<li><a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/API\/Web_Storage_API\" rel=\"nofollow noopener\" target=\"_blank\">MDN: Web Storage API<\/a><\/li>\n<li><a href=\"https:\/\/developers.poki.com\/\" rel=\"nofollow noopener\" target=\"_blank\">Poki for developers<\/a><\/li>\n<\/ul>\n<h2>Related questions<\/h2>\n<h3>Should the invite link include the player&#8217;s name or ID?<\/h3>\n<p>No, keep identity separate from the link. Let the client send its own player info after joining, so the same link can be reused by different people safely.<\/p>\n<h3>How long should a lobby invite link stay valid?<\/h3>\n<p>Tie validity to the room&#8217;s actual lifecycle on the server (host present, room not full) rather than a fixed timer, so links fail predictably instead of silently.<\/p>\n<h3>Can I store the last room code in the browser for reconnects?<\/h3>\n<p>Yes, the Web Storage API is suitable for remembering a recent room code locally so a dropped player can rejoin quickly, but the server must still revalidate it.<\/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\": \"What are the best practices for shareable multiplayer lobby invite links?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Encode a short room code in the URL, validate and expire it server-side, let the client join automatically on load, and show a clear message if the room is full or gone. Use the host platform's native share\/invite API where one exists instead of building your own.\"}}, {\"@type\": \"Question\", \"name\": \"Should the invite link include the player's name or ID?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"No, keep identity separate from the link. Let the client send its own player info after joining, so the same link can be reused by different people safely.\"}}, {\"@type\": \"Question\", \"name\": \"How long should a lobby invite link stay valid?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Tie validity to the room's actual lifecycle on the server (host present, room not full) rather than a fixed timer, so links fail predictably instead of silently.\"}}, {\"@type\": \"Question\", \"name\": \"Can I store the last room code in the browser for reconnects?\", \"acceptedAnswer\": {\"@type\": \"Answer\", \"text\": \"Yes, the Web Storage API is suitable for remembering a recent room code locally so a dropped player can rejoin quickly, but the server must still revalidate it.\"}}], \"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\/\"]}]}<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Publishing through Playgama connects a build to 100+ distribution partners with 450M+ monthly network reach, while Playgama Bridge adapts one build across 25+ platforms including Poki, CrazyGames, and MSN.<\/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-14540","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>What are the best practices for shareable multiplayer lobby invite links?<\/title>\n<meta name=\"description\" content=\"Compare destinations for a finished HTML5 game: game portals, distribution networks, and Playgama&#039;s portal, Bridge SDK, and Wrap for your own domain.\" \/>\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\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are the best practices for shareable multiplayer lobby invite links?\" \/>\n<meta property=\"og:description\" content=\"Compare destinations for a finished HTML5 game: game portals, distribution networks, and Playgama&#039;s portal, Bridge SDK, and Wrap for your own domain.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/\" \/>\n<meta property=\"og:site_name\" content=\"Playgama Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-24T10:30:57+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\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/\"},\"author\":{\"name\":\"David Sedrakyan\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#\\\/schema\\\/person\\\/5bbe086be334a842649a21fd6514a306\"},\"headline\":\"What are the best practices for shareable multiplayer lobby invite links?\",\"datePublished\":\"2026-09-24T10:30:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/\"},\"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\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/\",\"url\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/\",\"name\":\"What are the best practices for shareable multiplayer lobby invite links?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-09-24T10:30:57+00:00\",\"description\":\"Compare destinations for a finished HTML5 game: game portals, distribution networks, and Playgama's portal, Bridge SDK, and Wrap for your own domain.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/playgama.com\\\/blog\\\/business-faqs\\\/what-are-the-best-practices-for-shareable-multiplayer-lobby\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/playgama.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What are the best practices for shareable multiplayer lobby invite links?\"}]},{\"@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":"What are the best practices for shareable multiplayer lobby invite links?","description":"Compare destinations for a finished HTML5 game: game portals, distribution networks, and Playgama's portal, Bridge SDK, and Wrap for your own domain.","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\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/","og_locale":"en_US","og_type":"article","og_title":"What are the best practices for shareable multiplayer lobby invite links?","og_description":"Compare destinations for a finished HTML5 game: game portals, distribution networks, and Playgama's portal, Bridge SDK, and Wrap for your own domain.","og_url":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/","og_site_name":"Playgama Blog","article_published_time":"2026-09-24T10:30:57+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\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/#article","isPartOf":{"@id":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/"},"author":{"name":"David Sedrakyan","@id":"https:\/\/playgama.com\/blog\/#\/schema\/person\/5bbe086be334a842649a21fd6514a306"},"headline":"What are the best practices for shareable multiplayer lobby invite links?","datePublished":"2026-09-24T10:30:57+00:00","mainEntityOfPage":{"@id":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/"},"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\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/","url":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/","name":"What are the best practices for shareable multiplayer lobby invite links?","isPartOf":{"@id":"https:\/\/playgama.com\/blog\/#website"},"datePublished":"2026-09-24T10:30:57+00:00","description":"Compare destinations for a finished HTML5 game: game portals, distribution networks, and Playgama's portal, Bridge SDK, and Wrap for your own domain.","breadcrumb":{"@id":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/playgama.com\/blog\/business-faqs\/what-are-the-best-practices-for-shareable-multiplayer-lobby\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/playgama.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What are the best practices for shareable multiplayer lobby invite links?"}]},{"@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\/14540","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=14540"}],"version-history":[{"count":1,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/posts\/14540\/revisions"}],"predecessor-version":[{"id":14976,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/posts\/14540\/revisions\/14976"}],"wp:attachment":[{"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/media?parent=14540"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/categories?post=14540"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/playgama.com\/blog\/wp-json\/wp\/v2\/tags?post=14540"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}