{"id":37571,"date":"2024-11-01T09:58:38","date_gmt":"2024-11-01T09:58:38","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37571"},"modified":"2024-11-01T11:02:11","modified_gmt":"2024-11-01T11:02:11","slug":"uwp-development-xaml-namespace","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37571\/","title":{"rendered":"UWP Development, XAML Namespace"},"content":{"rendered":"<h2>Windows UWP Development: XAML Namespace<\/h2>\n<p>UWP (Universal Windows Platform) development is at the core of modern Windows application development. XAML stands for &#8216;eXtensible Application Markup Language&#8217; and is used to define the user interface (UI) of UWP applications. In this article, we will delve deeply into XAML namespaces and explain the types of namespaces used in development and how to use them.<\/p>\n<h3>1. What is a XAML Namespace?<\/h3>\n<p>A XAML namespace is a way to specify the objects and elements that can be used in a XAML file. It is similar to XML namespaces, but it focuses on defining the types and properties of objects in XAML. In UWP applications, various UI elements can be defined and used. These UI elements are based on classes corresponding to each namespace.<\/p>\n<h3>2. Basic Structure of XAML Namespace<\/h3>\n<p>XAML files typically reference multiple namespaces. XAML namespaces are defined in URI format and are generally represented as follows:<\/p>\n<pre><code>&lt;Page xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\" \n          xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"&gt;\n  &lt;Grid&gt;\n    &lt;TextBox x:Name=\"sampleTextBox\" \/&gt;\n  &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<p>In the example above, <code>xmlns<\/code> specifies the default namespace, while <code>xmlns:x<\/code> defines the namespace for special XAML attributes.<\/p>\n<h3>3. Key XAML Namespaces<\/h3>\n<p>Some key namespaces commonly used in UWP development include:<\/p>\n<ul>\n<li><strong>xmlns=&#8221;http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation&#8221;<\/strong>: A namespace for defining basic UI elements.<\/li>\n<li><strong>xmlns:x=&#8221;http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml&#8221;<\/strong>: A namespace that provides special features of XAML, allowing the use of special attributes like <code>x:Name<\/code>.<\/li>\n<li><strong>xmlns:local=&#8221;using:YourAppNamespace&#8221;<\/strong>: Used to reference local classes in the application.<\/li>\n<li><strong>xmlns:d=&#8221;http:\/\/schemas.microsoft.com\/expression\/blend\/2008&#8243;<\/strong>: A namespace providing additional elements that can be used during design time.<\/li>\n<li><strong>xmlns:mc=&#8221;http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006&#8243;<\/strong>: Provides compatibility information in XAML to extend functionality in design tools.<\/li>\n<\/ul>\n<h3>4. How to Use XAML Namespaces<\/h3>\n<p>To use XAML namespaces effectively, it&#8217;s essential to include multiple namespaces. This allows for easily adding and configuring various UI elements. Here is a complete example:<\/p>\n<pre><code>&lt;Page\n    x:Class=\"SampleApp.MainPage\"\n    xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n    xmlns:local=\"using:SampleApp\"\n    xmlns:d=\"http:\/\/schemas.microsoft.com\/expression\/blend\/2008\"\n    xmlns:mc=\"http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006\"\n    mc:Ignorable=\"d\"\n    d:DesignHeight=\"450\"\n    d:DesignWidth=\"800\"&gt;\n\n    &lt;Grid Background=\"{ThemeResource ApplicationPageBackgroundThemeBrush}\"&gt;\n        &lt;StackPanel&gt;\n            &lt;TextBlock Text=\"Hello, UWP!\" FontSize=\"30\" HorizontalAlignment=\"Center\"\/&gt;\n            &lt;TextBox x:Name=\"nameInput\" PlaceholderText=\"Enter your name\"\/&gt;\n            &lt;Button Content=\"Confirm\" Click=\"Button_Click\"\/&gt;\n        &lt;\/StackPanel&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<h3>5. Examples of Namespace Usage<\/h3>\n<p>In the example above, basic XAML namespaces are utilized to create UI elements. Now, let&#8217;s look at how these UI elements can be controlled. In the <code>MainPage.xaml.cs<\/code> file, the button click event can be implemented as follows:<\/p>\n<pre><code>using Windows.UI.Xaml;\nusing Windows.UI.Xaml.Controls;\n\nnamespace SampleApp\n{\n    public sealed partial class MainPage : Page\n    {\n        public MainPage()\n        {\n            this.InitializeComponent();\n        }\n\n        private void Button_Click(object sender, RoutedEventArgs e)\n        {\n            string enteredName = nameInput.Text;\n            \/\/ Implement additional functionality...\n        }\n    }\n}<\/code><\/pre>\n<p>In this example, when the button click event occurs, the name entered by the user is stored in the variable <code>enteredName<\/code>. This way, namespaces and UI elements can be used to implement interactions in the application.<\/p>\n<h3>6. Design Time Support<\/h3>\n<p>One of the important features of XAML is its support at design time. Properties with the <code>d:<\/code> prefix provide various features that can be used during design in IDEs like Visual Studio. These properties do not affect runtime and are primarily used to make the UI more intuitive.<\/p>\n<h3>7. Defining Custom Namespaces<\/h3>\n<p>When creating and using your own classes or controls, you can define custom namespaces. Here\u2019s how to define a custom class and use it in XAML:<\/p>\n<pre><code>using Windows.UI.Xaml.Controls;\n\nnamespace SampleApp.Controls\n{\n    public class CustomButton : Button\n    {\n        public CustomButton()\n        {\n            this.Content = \"Custom Button\";\n        }\n    }\n}<\/code><\/pre>\n<p>An example of using a custom button in XAML is as follows:<\/p>\n<pre><code>&lt;Page\n    xmlns:controls=\"using:SampleApp.Controls\"&gt;\n    &lt;Grid&gt;\n        &lt;controls:CustomButton \/&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<h3>8. Optimized Naming Conventions<\/h3>\n<p>When defining and using XAML namespaces, it is important to optimize naming conventions for better readability. For example, setting prefixes for each namespace allows them to be used according to their specific purposes. This makes code management easier even in large projects.<\/p>\n<h3>9. XAML Namespace and Data Binding<\/h3>\n<p>XAML namespaces play a crucial role in the MVVM (Model-View-ViewModel) architecture by connecting the UI and business logic through data binding. Here is a simple example of data binding:<\/p>\n<pre><code>&lt;Page\n    x:Class=\"SampleApp.MainPage\"\n    xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n    xmlns:local=\"using:SampleApp\"&gt;\n\n    &lt;Grid&gt;\n        &lt;TextBlock Text=\"{Binding Name}\" \/&gt;\n        &lt;TextBox Text=\"{Binding Name, Mode=TwoWay}\" \/&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<p>In the above code, the <code>Name<\/code> property is bound to the view, allowing UI changes to be reflected automatically.<\/p>\n<h3>10. Error Handling and Debugging<\/h3>\n<p>Common errors that can occur when using XAML namespaces are typically due to an incorrect URI or a missing class. Error messages can help easily find and fix any missing elements. Additionally, if changes made at design time are not reflected correctly, you can resolve the issue by selecting <code>Clean Solution<\/code> followed by <code>Rebuild Solution<\/code> from the <code>Build<\/code> menu.<\/p>\n<h3>Conclusion<\/h3>\n<p>XAML namespaces are a vital component of UWP application development. Through the topics covered in this article, it is hoped that you gain an understanding of the fundamental concepts of XAML namespaces, practical examples, custom class definitions, data binding, and more. Appropriately utilizing XAML namespaces during UWP development can lead to writing more efficient and maintainable code.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Windows UWP Development: XAML Namespace UWP (Universal Windows Platform) development is at the core of modern Windows application development. XAML stands for &#8216;eXtensible Application Markup Language&#8217; and is used to define the user interface (UI) of UWP applications. In this article, we will delve deeply into XAML namespaces and explain the types of namespaces used &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37571\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, XAML Namespace&#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":[115],"tags":[],"class_list":["post-37571","post","type-post","status-publish","format-standard","hentry","category-uwp-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>UWP Development, XAML Namespace - \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\/37571\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, XAML Namespace - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Windows UWP Development: XAML Namespace UWP (Universal Windows Platform) development is at the core of modern Windows application development. XAML stands for &#8216;eXtensible Application Markup Language&#8217; and is used to define the user interface (UI) of UWP applications. In this article, we will delve deeply into XAML namespaces and explain the types of namespaces used &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, XAML Namespace&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37571\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:58:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:11+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37571\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37571\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, XAML Namespace\",\"datePublished\":\"2024-11-01T09:58:38+00:00\",\"dateModified\":\"2024-11-01T11:02:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37571\/\"},\"wordCount\":685,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37571\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37571\/\",\"name\":\"UWP Development, XAML Namespace - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:58:38+00:00\",\"dateModified\":\"2024-11-01T11:02:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37571\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37571\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37571\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, XAML Namespace\"}]},{\"@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":"UWP Development, XAML Namespace - \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\/37571\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, XAML Namespace - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Windows UWP Development: XAML Namespace UWP (Universal Windows Platform) development is at the core of modern Windows application development. XAML stands for &#8216;eXtensible Application Markup Language&#8217; and is used to define the user interface (UI) of UWP applications. In this article, we will delve deeply into XAML namespaces and explain the types of namespaces used &hellip; \ub354 \ubcf4\uae30 \"UWP Development, XAML Namespace\"","og_url":"https:\/\/atmokpo.com\/w\/37571\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:58:38+00:00","article_modified_time":"2024-11-01T11:02:11+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37571\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37571\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, XAML Namespace","datePublished":"2024-11-01T09:58:38+00:00","dateModified":"2024-11-01T11:02:11+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37571\/"},"wordCount":685,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37571\/","url":"https:\/\/atmokpo.com\/w\/37571\/","name":"UWP Development, XAML Namespace - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:58:38+00:00","dateModified":"2024-11-01T11:02:11+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37571\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37571\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37571\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, XAML Namespace"}]},{"@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\/37571","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=37571"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37571\/revisions"}],"predecessor-version":[{"id":37572,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37571\/revisions\/37572"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37571"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}