{"id":37545,"date":"2024-11-01T09:58:25","date_gmt":"2024-11-01T09:58:25","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37545"},"modified":"2024-11-01T11:02:18","modified_gmt":"2024-11-01T11:02:18","slug":"uwp-development-adding-userdetail-page","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37545\/","title":{"rendered":"UWP Development, Adding UserDetail Page"},"content":{"rendered":"<p>UWP (Universal Windows Platform) app development is the process of creating applications that can run on various Windows devices. In this tutorial, we will explain in detail how to add a &#8216;UserDetail&#8217; page to a UWP app. This page displays user details and contains features aimed at enhancing the app&#8217;s usability.<\/p>\n<h2>1. Overview of UWP and UserDetail Page<\/h2>\n<p>UWP is an app platform based on the Windows 10 operating system. With UWP, you can develop applications that can be used on various devices, including desktops, tablets, and console TVs. The UserDetail page shows the user&#8217;s profile information and has become one of the essential elements of the application.<\/p>\n<h2>2. Setting Up the Development Environment<\/h2>\n<p>To develop UWP apps, the following development environment is required:<\/p>\n<ul>\n<li><strong>Windows 10 Operating System<\/strong>: UWP development is supported only on Windows 10.<\/li>\n<li><strong>Visual Studio 2022<\/strong>: An IDE for developing UWP applications.<\/li>\n<li><strong>Windows SDK<\/strong>: The SDK necessary for UWP development.<\/li>\n<\/ul>\n<h2>3. Creating a UWP Project<\/h2>\n<p>First, open Visual Studio and create a new UWP project. Follow the steps below:<\/p>\n<ol>\n<li>Launch Visual Studio.<\/li>\n<li>Select File &gt; New &gt; Project.<\/li>\n<li>Select &#8216;Blank App (Universal Windows)&#8217; and specify a project name, then click the &#8216;Create&#8217; button.<\/li>\n<li>Select the Target version and Minimum version. It is recommended to set it to the latest version.<\/li>\n<\/ol>\n<h2>4. Adding UserDetail Page<\/h2>\n<p>Now it&#8217;s time to add the &#8216;UserDetail&#8217; page to the project. Please follow these steps:<\/p>\n<ol>\n<li>Right-click the project in Solution Explorer and select &#8216;Add&#8217; &gt; &#8216;New Item.&#8217;<\/li>\n<li>Select &#8216;Blank Page&#8217; and name the page &#8216;UserDetailPage.xaml.&#8217;<\/li>\n<\/ol>\n<h3>4.1 Designing UserDetailPage.xaml<\/h3>\n<p>Design the UI of the added page. Below is example code for UserDetailPage.xaml:<\/p>\n<pre><code>&lt;Page\n    x:Class=\"YourAppNamespace.UserDetailPage\"\n    xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n    xmlns:local=\"using:YourAppNamespace\"\n    xmlns:d=\"http:\/\/schemas.microsoft.com\/expression\/blend\/2008\"\n    xmlns:mc=\"http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006\"\n    mc:Ignorable=\"d\"&gt;\n\n    &lt;Grid Background=\"{ThemeResource ApplicationPageBackgroundThemeBrush}\"&gt;\n        &lt;StackPanel Margin=\"20\"&gt;\n            &lt;TextBlock Text=\"User Detail\" FontSize=\"30\" FontWeight=\"Bold\" Margin=\"0,0,0,20\"\/&gt;\n            &lt;TextBlock Text=\"Name:\" FontSize=\"20\" FontWeight=\"SemiBold\"\/&gt;\n            &lt;TextBlock x:Name=\"UserName\" FontSize=\"20\" Margin=\"0,0,0,10\"\/&gt;\n            &lt;TextBlock Text=\"Email:\" FontSize=\"20\" FontWeight=\"SemiBold\"\/&gt;\n            &lt;TextBlock x:Name=\"UserEmail\" FontSize=\"20\" Margin=\"0,0,0,10\"\/&gt;\n            &lt;Button Content=\"Edit\" Click=\"EditButton_Click\" Width=\"100\" Height=\"40\"\/&gt;\n        &lt;\/StackPanel&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;\n<\/code><\/pre>\n<h3>4.2 Writing Code in UserDetailPage.xaml.cs<\/h3>\n<p>To define the behavior of the page, write the UserDetailPage.xaml.cs file as follows. Here, we implement the function of selecting and displaying basic user information from a list.<\/p>\n<pre><code>using Windows.UI.Xaml.Controls;\n\nnamespace YourAppNamespace\n{\n    public sealed partial class UserDetailPage : Page\n    {\n        public UserDetailPage()\n        {\n            this.InitializeComponent();\n            LoadUserData();\n        }\n\n        private void LoadUserData()\n        {\n            \/\/ Sample data - can be replaced with actual database calls\n            UserName.Text = \"John Doe\";\n            UserEmail.Text = \"johndoe@example.com\";\n        }\n\n        private void EditButton_Click(object sender, RoutedEventArgs e)\n        {\n            \/\/ Implement edit functionality\n            \/\/ For example: navigate to the user detail edit page\n        }\n    }\n}\n<\/code><\/pre>\n<h2>5. Setting Up Navigation<\/h2>\n<p>Set up navigation to allow the UserDetail page to be called from other pages. You can navigate to the UserDetail page through button click events on the main page or list page.<\/p>\n<pre><code>private void UserListView_ItemClick(object sender, ItemClickEventArgs e)\n{\n    Frame.Navigate(typeof(UserDetailPage), e.ClickedItem);\n}\n<\/code><\/pre>\n<h2>6. Data Binding and Applying MVVM Pattern<\/h2>\n<p>In UWP development, you can manage data binding using the MVVM (Model-View-ViewModel) pattern. Below is an example implementing MVVM:<\/p>\n<pre><code>public class UserViewModel : INotifyPropertyChanged\n{\n    private string _userName;\n    public string UserName\n    {\n        get =&gt; _userName;\n        set\n        {\n            _userName = value;\n            OnPropertyChanged();\n        }\n    }\n\n    private string _userEmail;\n    public string UserEmail\n    {\n        get =&gt; _userEmail;\n        set\n        {\n            _userEmail = value;\n            OnPropertyChanged();\n        }\n    }\n\n    public void LoadUserData()\n    {\n        \/\/ Sample data - can be replaced with actual database calls\n        UserName = \"John Doe\";\n        UserEmail = \"johndoe@example.com\";\n    }\n\n    public event PropertyChangedEventHandler PropertyChanged;\n    protected void OnPropertyChanged([CallerMemberName] string propertyName = null)\n    {\n        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));\n    }\n}\n<\/code><\/pre>\n<h3>6.1 Applying MVVM in UserDetailPage.xaml<\/h3>\n<p>Now, set up data binding using the above ViewModel in UserDetailPage.xaml:<\/p>\n<pre><code>&lt;Page.DataContext&gt;\n    &lt;local:UserViewModel \/&gt;\n&lt;\/Page.DataContext&gt;\n\n&lt;TextBlock Text=\"{Binding UserName}\" FontSize=\"20\" Margin=\"0,0,0,10\"\/&gt;\n&lt;TextBlock Text=\"{Binding UserEmail}\" FontSize=\"20\" Margin=\"0,0,0,10\"\/&gt;\n<\/code><\/pre>\n<h2>7. Saving and Loading Data<\/h2>\n<p>We will discuss how to save and retrieve information entered by the user. UWP can use local databases or files to store data. Below is a simple example of saving and loading using files:<\/p>\n<pre><code>private async void SaveUserData()\n{\n    var file = await Windows.Storage.KnownFolders.DocumentsLibrary.CreateFileAsync(\"UserData.txt\", Windows.Storage.CreationCollisionOption.ReplaceExisting);\n    await Windows.Storage.FileIO.WriteLinesAsync(file, new List<string> { UserName.Text, UserEmail.Text });\n}\n\nprivate async void LoadUserData()\n{\n    try\n    {\n        var file = await Windows.Storage.KnownFolders.DocumentsLibrary.GetFileAsync(\"UserData.txt\");\n        var lines = await Windows.Storage.FileIO.ReadLinesAsync(file);\n        UserName.Text = lines[0];\n        UserEmail.Text = lines[1];\n    }\n    catch (FileNotFoundException)\n    {\n        \/\/ Set default values if the file is not found\n        UserName.Text = \"John Doe\";\n        UserEmail.Text = \"johndoe@example.com\";\n    }\n}\n<\/code><\/pre>\n<h2>8. Testing and Debugging<\/h2>\n<p>Once development is complete, run the app in Visual Studio to verify that the UserDetail page works as expected. The following points should be tested:<\/p>\n<ul>\n<li>Ensure the UserDetail page displays correctly.<\/li>\n<li>Check if user information loads properly.<\/li>\n<li>Verify that the functionality works correctly when the edit button is clicked.<\/li>\n<\/ul>\n<h2>9. Conclusion<\/h2>\n<p>This document provides a detailed explanation of how to add a UserDetail page to a UWP app. By leveraging the powerful features of UWP, you can create applications that can be used across various devices. We hope you have learned the structure and operating principle of a basic UserDetail page through this tutorial. We wish you much success in your future UWP development journey.<\/p>\n<h2>10. References<\/h2>\n<ul>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/uwp\/\">Microsoft UWP Documentation<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/uwp\/design\/\">UWP App Design Guidelines<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/uwp\/getting-started\/\">Getting Started with UWP<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>UWP (Universal Windows Platform) app development is the process of creating applications that can run on various Windows devices. In this tutorial, we will explain in detail how to add a &#8216;UserDetail&#8217; page to a UWP app. This page displays user details and contains features aimed at enhancing the app&#8217;s usability. 1. Overview of UWP &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37545\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Adding UserDetail Page&#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-37545","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, Adding UserDetail Page - \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\/37545\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Adding UserDetail Page - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"UWP (Universal Windows Platform) app development is the process of creating applications that can run on various Windows devices. In this tutorial, we will explain in detail how to add a &#8216;UserDetail&#8217; page to a UWP app. This page displays user details and contains features aimed at enhancing the app&#8217;s usability. 1. Overview of UWP &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Adding UserDetail Page&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37545\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:58:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:18+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\/37545\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37545\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Adding UserDetail Page\",\"datePublished\":\"2024-11-01T09:58:25+00:00\",\"dateModified\":\"2024-11-01T11:02:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37545\/\"},\"wordCount\":550,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37545\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37545\/\",\"name\":\"UWP Development, Adding UserDetail Page - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:58:25+00:00\",\"dateModified\":\"2024-11-01T11:02:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37545\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37545\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37545\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Adding UserDetail Page\"}]},{\"@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, Adding UserDetail Page - \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\/37545\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Adding UserDetail Page - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"UWP (Universal Windows Platform) app development is the process of creating applications that can run on various Windows devices. In this tutorial, we will explain in detail how to add a &#8216;UserDetail&#8217; page to a UWP app. This page displays user details and contains features aimed at enhancing the app&#8217;s usability. 1. Overview of UWP &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Adding UserDetail Page\"","og_url":"https:\/\/atmokpo.com\/w\/37545\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:58:25+00:00","article_modified_time":"2024-11-01T11:02:18+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\/37545\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37545\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Adding UserDetail Page","datePublished":"2024-11-01T09:58:25+00:00","dateModified":"2024-11-01T11:02:18+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37545\/"},"wordCount":550,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37545\/","url":"https:\/\/atmokpo.com\/w\/37545\/","name":"UWP Development, Adding UserDetail Page - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:58:25+00:00","dateModified":"2024-11-01T11:02:18+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37545\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37545\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37545\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Adding UserDetail Page"}]},{"@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\/37545","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=37545"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37545\/revisions"}],"predecessor-version":[{"id":37546,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37545\/revisions\/37546"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37545"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37545"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37545"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}