{"id":37931,"date":"2024-11-01T10:01:37","date_gmt":"2024-11-01T10:01:37","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37931"},"modified":"2024-11-01T11:33:06","modified_gmt":"2024-11-01T11:33:06","slug":"unity-2d-game-development-add-advertising-and-in-app-purchases-add-advertising-and-in-app-purchase-features-using-unity-ads-and-iap","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37931\/","title":{"rendered":"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP."},"content":{"rendered":"<p><body><\/p>\n<article>\n<p>\n            Recently, 2D games have become very popular, and many developers are using Unity to develop their games. Unity provides a powerful engine and various tools to help developers implement their creative ideas into actual games. However, just developing a game is not enough to generate revenue. Therefore, it is important to add advertising and in-app purchase features. This article will detail how to add advertising and in-app purchase features using Unity Ads and Unity IAP (In-App Purchase).\n        <\/p>\n<h2>1. Overview of Unity Ads<\/h2>\n<p>\n            Unity Ads is an advertising platform provided by the Unity engine, allowing developers to easily integrate ads into their games. Through Unity Ads, developers can display ads to generate revenue without interrupting the user&#8217;s gaming experience.\n        <\/p>\n<h2>2. How to Set Up Unity Ads<\/h2>\n<p>\n            To set up Unity Ads, the following steps are required.\n        <\/p>\n<h3>2.1 Setting Up a Unity Project<\/h3>\n<p>\n            To use the Ads feature in the Unity project, you first need to enable the Ads service in your Unity project. Select <strong>Window &gt; General &gt; Services<\/strong> from the top menu of the Editor. In the Unity Services window, select &#8220;Ads&#8221; and enable it. You will need to log in to your Unity developer account to do this.\n        <\/p>\n<h3>2.2 Setting Up Advertising<\/h3>\n<p>\n            Once the service is activated, an Ads ID will be created for the project. This information can be used to integrate Unity Ads.\n        <\/p>\n<h3>2.3 Importing the Unity Ads SDK<\/h3>\n<p>\n            Open the Unity Package Manager and find the Ads package in the <strong>Unity Registry<\/strong> to install it. This will add the packages related to Unity Ads to the project.\n        <\/p>\n<h2>3. Unity Ads Code Sample<\/h2>\n<p>\n            The basic code to integrate Unity Ads into a game is as follows.\n        <\/p>\n<pre>\n<code>using UnityEngine;\nusing UnityEngine.Advertisements;\n\npublic class AdsManager : MonoBehaviour, IUnityAdsListener\n{\n    private string gameId = \"YOUR_GAME_ID\";\n    private bool testMode = true;\n    \n    void Start()\n    {\n        if (Advertisement.isSupported)\n        {\n            Advertisement.Initialize(gameId, testMode);\n            Advertisement.AddListener(this);\n        }\n    }\n\n    public void ShowAd()\n    {\n        if (Advertisement.IsReady(\"video\"))\n        {\n            Advertisement.Show(\"video\");\n        }\n    }\n\n    public void OnUnityAdsReady(string placementId) { }\n\n    public void OnUnityAdsDidFinish(string placementId, ShowResult showResult) \n    {\n        if (showResult == ShowResult.Finished)\n        {\n            \/\/ Action when ad is fully viewed\n            Debug.Log(\"Ad viewing completed\");\n        }\n        else if (showResult == ShowResult.Skipped)\n        {\n            \/\/ In case the ad was skipped\n            Debug.Log(\"Ad skipped\");\n        }\n        else if (showResult == ShowResult.Failed)\n        {\n            \/\/ Ad load failed\n            Debug.Log(\"Ad load failed\");\n        }\n    }\n\n    public void OnUnityAdsDidError(string message) \n    {\n        Debug.Log(\"Ad error occurred: \" + message);\n    }\n}<\/code>\n        <\/pre>\n<h2>4. Overview of In-App Purchases (IAP)<\/h2>\n<p>\n            In-app purchases allow users to buy items or features within the game. Using IAP in Unity makes it easy to implement such features.\n        <\/p>\n<h2>5. How to Set Up Unity IAP<\/h2>\n<p>\n            The steps for installing and setting up Unity IAP are as follows.\n        <\/p>\n<h3>5.1 Importing the Unity IAP Package<\/h3>\n<p>\n            In the Unity editor, select <strong>Window &gt; Package Manager<\/strong> and find the Unity IAP package to install it.\n        <\/p>\n<h3>5.2 Activating Services<\/h3>\n<p>\n            To use IAP, you must activate the IAP service in Unity Services. Select &#8220;IAP&#8221; in the Services window and enable it.\n        <\/p>\n<h3>5.3 Registering Products<\/h3>\n<p>\n            You need to register products (in-app purchase items) in the Unity dashboard. You must set a unique ID and specify a price for each product. This information can be used in your code.\n        <\/p>\n<h2>6. Unity IAP Code Sample<\/h2>\n<p>\n            The basic code for integrating Unity IAP and handling in-app purchases is as follows.\n        <\/p>\n<pre>\n<code>using UnityEngine;\nusing UnityEngine.Purchasing;\n\npublic class IAPManager : MonoBehaviour, IStoreListener\n{\n    private static IStoreController m_StoreController;          \n    private static IExtensionProvider m_ExtensionProvider;\n    \n    public string productId = \"YOUR_PRODUCT_ID\";\n\n    void Start()\n    {\n        if (m_StoreController == null)\n        {\n            InitializePurchasing();\n        }\n    }\n\n    public void InitializePurchasing()\n    {\n        if (IsInitialized())\n            return;\n\n        var builder = ConfigurationBuilder.Instance(StandardPurchasingModule.Instance());\n        builder.AddProduct(productId, ProductType.Consumable);\n        UnityPurchasing.Initialize(this, builder);\n    }\n\n    private bool IsInitialized()\n    {\n        return m_StoreController != null &amp;&amp; m_ExtensionProvider != null;\n    }\n\n    public void BuyProductID()\n    {\n        BuyProductID(productId);\n    }\n\n    void BuyProductID(string productId)\n    {\n        BuyProduct(productId);\n    }\n\n    public void OnInitialized(IStoreController controller, IExtensionProvider extensions)\n    {\n        m_StoreController = controller;\n        m_ExtensionProvider = extensions;\n        Debug.Log(\"Purchase initialization completed\");\n    }\n\n    public void OnInitializeFailed(InitializationFailureReason error)\n    {\n        Debug.Log(\"Purchase initialization failed: \" + error.ToString());\n    }\n\n    public void OnPurchaseFailed(Product product, PurchaseFailureReason reason)\n    {\n        Debug.Log($\"Purchase failed: {product.definition.id}, Reason: {reason}\");\n    }\n\n    public void OnPurchased(Product product)\n    {\n        Debug.Log($\"Purchase completed: {product.definition.id}\");\n    }\n\n    public void OnPurchasingFailed(Product product, PurchaseFailureReason reason)\n    {\n        Debug.Log($\"Error occurred during purchase: {product.definition.id}, Reason: {reason}\");\n    }\n}<\/code>\n        <\/pre>\n<h2>7. Final Check for Integrating Ads and In-App Purchases into the Game<\/h2>\n<p>\n            Now that you have integrated Unity Ads and IAP, you can display ads within the game and perform in-app purchases. It is important to provide appropriate feedback when users view ads or make purchases.\n        <\/p>\n<h2>8. Conclusion<\/h2>\n<p>\n            Through this article, we have learned how to add advertising and in-app purchase features to Unity 2D games. Proper use of Unity Ads and IAP can enhance the profitability of the game. However, excessive advertising can harm user experience, so it is important to maintain a proper balance. Create great 2D games with Unity!\n        <\/p>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently, 2D games have become very popular, and many developers are using Unity to develop their games. Unity provides a powerful engine and various tools to help developers implement their creative ideas into actual games. However, just developing a game is not enough to generate revenue. Therefore, it is important to add advertising and in-app &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37931\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP.&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[135],"tags":[],"class_list":["post-37931","post","type-post","status-publish","format-standard","hentry","category-unity-basic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/37931\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Recently, 2D games have become very popular, and many developers are using Unity to develop their games. Unity provides a powerful engine and various tools to help developers implement their creative ideas into actual games. However, just developing a game is not enough to generate revenue. Therefore, it is important to add advertising and in-app &hellip; \ub354 \ubcf4\uae30 &quot;Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37931\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:01:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:33:06+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37931\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37931\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP.\",\"datePublished\":\"2024-11-01T10:01:37+00:00\",\"dateModified\":\"2024-11-01T11:33:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37931\/\"},\"wordCount\":539,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Unity Basic\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37931\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37931\/\",\"name\":\"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:01:37+00:00\",\"dateModified\":\"2024-11-01T11:33:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37931\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37931\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37931\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/37931\/","og_locale":"ko_KR","og_type":"article","og_title":"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Recently, 2D games have become very popular, and many developers are using Unity to develop their games. Unity provides a powerful engine and various tools to help developers implement their creative ideas into actual games. However, just developing a game is not enough to generate revenue. Therefore, it is important to add advertising and in-app &hellip; \ub354 \ubcf4\uae30 \"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP.\"","og_url":"https:\/\/atmokpo.com\/w\/37931\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:01:37+00:00","article_modified_time":"2024-11-01T11:33:06+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37931\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37931\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP.","datePublished":"2024-11-01T10:01:37+00:00","dateModified":"2024-11-01T11:33:06+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37931\/"},"wordCount":539,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Unity Basic"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37931\/","url":"https:\/\/atmokpo.com\/w\/37931\/","name":"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:01:37+00:00","dateModified":"2024-11-01T11:33:06+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37931\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37931\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37931\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Unity 2D Game Development, Add Advertising and In-App Purchases Add advertising and in-app purchase features using Unity Ads and IAP."}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37931","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37931"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37931\/revisions"}],"predecessor-version":[{"id":37932,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37931\/revisions\/37932"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37931"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37931"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37931"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}