{"id":37453,"date":"2024-11-01T09:57:41","date_gmt":"2024-11-01T09:57:41","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37453"},"modified":"2024-11-01T11:02:40","modified_gmt":"2024-11-01T11:02:40","slug":"uwp-development-date-and-time","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37453\/","title":{"rendered":"UWP Development, Date and Time"},"content":{"rendered":"<p>Universal Windows Platform (UWP) development is a powerful way to create modern Windows applications. Today, we will explain in detail how to handle dates and times in UWP. To aid in a deep understanding, we will include UWP&#8217;s date and time-related APIs, available data formats, example code, and practical tips.<\/p>\n<h2>1. Importance of Date and Time<\/h2>\n<p>Dates and times are critical elements in most applications. User activity logs, event schedules, timers, and many other functions are based on dates and times. UWP offers various classes and methods for managing dates and times. By using these classes, developers can easily manipulate dates and times in the desired format.<\/p>\n<h2>2. Classes for Handling Dates and Times in UWP<\/h2>\n<h3>2.1. <code>DateTime<\/code> Class<\/h3>\n<p>The <code>DateTime<\/code> class is the most fundamental class representing dates and times. This class provides functionalities for date and time calculations, formatting, and comparisons.<\/p>\n<h4>2.1.1. Creating a <code>DateTime<\/code><\/h4>\n<p>A <code>DateTime<\/code> object can be created using various constructors. Here are a few examples:<\/p>\n<pre><code>using System;\n\nDateTime now = DateTime.Now; \/\/ Current date and time\nDateTime specificDate = new DateTime(2023, 10, 1); \/\/ Specific date\nDateTime withTime = new DateTime(2023, 10, 1, 15, 30, 0); \/\/ Specific date and time<\/code><\/pre>\n<h4>2.1.2. Formatting Date and Time<\/h4>\n<p>You can specify the format when converting a <code>DateTime<\/code> object to a string. Here are examples of formatting:<\/p>\n<pre><code>using System;\n\nDateTime date = new DateTime(2023, 10, 1);\nstring formattedDate = date.ToString(\"yyyy-MM-dd\"); \/\/ \"2023-10-01\"\nstring formattedTime = date.ToString(\"HH:mm:ss\"); \/\/ \"00:00:00\"<\/code><\/pre>\n<h3>2.2. <code>TimeSpan<\/code> Class<\/h3>\n<p>The <code>TimeSpan<\/code> class represents the interval of time between two dates. It allows developers to calculate or compare time intervals.<\/p>\n<h4>2.2.1. Creating a <code>TimeSpan<\/code><\/h4>\n<pre><code>using System;\n\nTimeSpan duration = new TimeSpan(1, 30, 0); \/\/ 1 hour 30 minutes\nTimeSpan difference = new DateTime(2023, 10, 1) - new DateTime(2023, 9, 30); \/\/ 1 day\n<\/code><\/pre>\n<h4>2.2.2. Using <code>TimeSpan<\/code><\/h4>\n<p>A <code>TimeSpan<\/code> object provides several useful properties and methods:<\/p>\n<pre><code>using System;\n\nTimeSpan timeSpan = new TimeSpan(2, 30, 0); \/\/ 2 hours 30 minutes\nint totalHours = (int)timeSpan.TotalHours; \/\/ Total hours\nint totalMinutes = (int)timeSpan.TotalMinutes; \/\/ Total minutes<\/code><\/pre>\n<h2>3. Using Date and Time APIs<\/h2>\n<h3>3.1. <code>DateTimeOffset<\/code> Class<\/h3>\n<p>The <code>DateTimeOffset<\/code> class represents a specific time zone and specifies the difference from UTC (Coordinated Universal Time). This allows accurate date and time information for different time zones.<\/p>\n<h4>3.1.1. Example Usage<\/h4>\n<pre><code>using System;\n\nDateTimeOffset dateTimeOffset = DateTimeOffset.Now; \/\/ Current date and time\nConsole.WriteLine(dateTimeOffset); \/\/ Example: 2023-10-01 15:30:00 +09:00<\/code><\/pre>\n<h3>3.2. Using Date Picker<\/h3>\n<p>In UWP apps, <code>DatePicker<\/code> and <code>TimePicker<\/code> controls can be used to allow users to select dates and times. These two controls make it easy for the user interface to select dates and times.<\/p>\n<h4>3.2.1. Adding Date and Time Pickers via XAML<\/h4>\n<p>Here is the XAML code to add a <code>DatePicker<\/code> and a <code>TimePicker<\/code> to the UI:<\/p>\n<pre><code>&lt;StackPanel&gt;\n    &lt;TextBlock Text=\"Select Date:\" \/&gt;\n    &lt;DatePicker x:Name=\"datePicker\" \/&gt;\n\n    &lt;TextBlock Text=\"Select Time:\" \/&gt;\n    &lt;TimePicker x:Name=\"timePicker\" \/&gt;\n&lt;\/StackPanel&gt;<\/code><\/pre>\n<h4>3.2.2. Handling Selected Date and Time<\/h4>\n<p>Here is an example of C# code for handling the selected date and time:<\/p>\n<pre><code>using System;\nusing Windows.UI.Xaml;\nusing Windows.UI.Xaml.Controls;\n\n\/\/ Assume: datePicker and timePicker are defined in XAML\npublic MainPage()\n{\n    this.InitializeComponent();\n    datePicker.DateChanged += DatePicker_DateChanged;\n    timePicker.TimeChanged += TimePicker_TimeChanged;\n}\n\nprivate void DatePicker_DateChanged(object sender, DatePickerValueChangedEventArgs e)\n{\n    DateTime selectedDate = e.NewDateTime.Date;\n    \/\/ Additional logic for the selected date\n}\n\nprivate void TimePicker_TimeChanged(object sender, TimePickerValueChangedEventArgs e)\n{\n    TimeSpan selectedTime = e.NewTime;\n    \/\/ Additional logic for the selected time\n}\n<\/code><\/pre>\n<h2>4. Manipulating Dates and Times<\/h2>\n<p>UWP offers various ways to quickly manipulate dates and times. Below, we will introduce methods for adding and subtracting date and time or comparing them.<\/p>\n<h3>4.1. Adding Dates and Times<\/h3>\n<pre><code>using System;\n\nDateTime today = DateTime.Now;\nDateTime nextWeek = today.AddDays(7); \/\/ One week later\nDateTime nextHour = today.AddHours(1); \/\/ One hour later<\/code><\/pre>\n<h3>4.2. Subtracting Dates and Times<\/h3>\n<pre><code>using System;\n\nDateTime today = DateTime.Now;\nDateTime previousWeek = today.AddDays(-7); \/\/ One week ago\nDateTime previousHour = today.AddHours(-1); \/\/ One hour ago<\/code><\/pre>\n<h3>4.3. Comparing Dates and Times<\/h3>\n<pre><code>using System;\n\nDateTime date1 = new DateTime(2023, 10, 1);\nDateTime date2 = new DateTime(2023, 10, 15);\n\nif (date1 &lt; date2)\n{\n    Console.WriteLine(\"date1 is earlier than date2.\");\n}\nelse if (date1 &gt; date2)\n{\n    Console.WriteLine(\"date1 is later than date2.\");\n}\nelse\n{\n    Console.WriteLine(\"date1 and date2 are the same.\");\n}<\/code><\/pre>\n<h2>5. Formatting Dates and Times<\/h2>\n<p>UWP provides ways to represent dates and times in various formats. Users can specify formats as needed to provide easily readable date and time information.<\/p>\n<h3>5.1. Default Format<\/h3>\n<pre><code>using System;\n\nDateTime date = DateTime.Now;\nstring defaultFormat = date.ToString(); \/\/ Default format\nstring customFormat = date.ToString(\"dddd, dd MMMM yyyy\"); \/\/ Example: \"Saturday, 01 October 2023\"<\/code><\/pre>\n<h3>5.2. Culture-based Formatting<\/h3>\n<p>UWP supports date and time formats tailored to various cultures. You can use <code>CultureInfo<\/code> to convert to a specific cultural format.<\/p>\n<pre><code>using System.Globalization;\n\nCultureInfo cultureInfo = new CultureInfo(\"fr-FR\");\nstring frenchDate = date.ToString(cultureInfo); \/\/ Representing date in French format<\/code><\/pre>\n<h2>6. Example Project<\/h2>\n<p>Based on the above descriptions, let\u2019s create a simple example project. This project is an application that inputs dates and times and displays the selected date and time.<\/p>\n<h3>6.1. XAML<\/h3>\n<pre><code>&lt;Page x:Class=\"DateTimeApp.MainPage\"&gt;\n    &lt;Grid&gt;\n        &lt;StackPanel&gt;\n            &lt;TextBlock Text=\"Select Date:\" \/&gt;\n            &lt;DatePicker x:Name=\"datePicker\" \/&gt;\n\n            &lt;TextBlock Text=\"Select Time:\" \/&gt;\n            &lt;TimePicker x:Name=\"timePicker\" \/&gt;\n\n            &lt;Button Content=\"Show Info\" Click=\"ShowInfo_Click\" \/&gt;\n\n            &lt;TextBlock x:Name=\"resultTextBlock\" \/&gt;\n        &lt;\/StackPanel&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<h3>6.2. C# Code<\/h3>\n<pre><code>using Windows.UI.Xaml;\nusing Windows.UI.Xaml.Controls;\n\nnamespace DateTimeApp\n{\n    public sealed partial class MainPage : Page\n    {\n        public MainPage()\n        {\n            this.InitializeComponent();\n        }\n\n        private void ShowInfo_Click(object sender, RoutedEventArgs e)\n        {\n            DateTime selectedDate = datePicker.DateTime.Date;\n            TimeSpan selectedTime = timePicker.Time;\n\n            string result = $\"Selected Date: {selectedDate.ToString(\"yyyy-MM-dd\")}\" +\n                            $\"\\nSelected Time: {selectedTime.Hours}:{selectedTime.Minutes}\";\n\n            resultTextBlock.Text = result;\n        }\n    }\n}\n<\/code><\/pre>\n<h2>7. Conclusion<\/h2>\n<p>In UWP development, dates and times are important elements. By leveraging the <code>DateTime<\/code>, <code>TimeSpan<\/code>, and <code>DateTimeOffset<\/code> classes, we can easily manage dates and times and provide functionalities for users to select dates and times. This article discussed in depth how to manipulate and display dates and times. Be sure to apply this to your real projects.<\/p>\n<p>This concludes our overview of handling dates and times through UWP, and we hope it helps in developing practical applications!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Universal Windows Platform (UWP) development is a powerful way to create modern Windows applications. Today, we will explain in detail how to handle dates and times in UWP. To aid in a deep understanding, we will include UWP&#8217;s date and time-related APIs, available data formats, example code, and practical tips. 1. Importance of Date and &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37453\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Date and Time&#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-37453","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, Date and Time - \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\/37453\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Date and Time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Universal Windows Platform (UWP) development is a powerful way to create modern Windows applications. Today, we will explain in detail how to handle dates and times in UWP. To aid in a deep understanding, we will include UWP&#8217;s date and time-related APIs, available data formats, example code, and practical tips. 1. Importance of Date and &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Date and Time&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37453\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:57:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:40+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\/37453\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37453\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Date and Time\",\"datePublished\":\"2024-11-01T09:57:41+00:00\",\"dateModified\":\"2024-11-01T11:02:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37453\/\"},\"wordCount\":521,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37453\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37453\/\",\"name\":\"UWP Development, Date and Time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:57:41+00:00\",\"dateModified\":\"2024-11-01T11:02:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37453\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37453\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37453\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Date and Time\"}]},{\"@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, Date and Time - \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\/37453\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Date and Time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Universal Windows Platform (UWP) development is a powerful way to create modern Windows applications. Today, we will explain in detail how to handle dates and times in UWP. To aid in a deep understanding, we will include UWP&#8217;s date and time-related APIs, available data formats, example code, and practical tips. 1. Importance of Date and &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Date and Time\"","og_url":"https:\/\/atmokpo.com\/w\/37453\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:57:41+00:00","article_modified_time":"2024-11-01T11:02:40+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\/37453\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37453\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Date and Time","datePublished":"2024-11-01T09:57:41+00:00","dateModified":"2024-11-01T11:02:40+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37453\/"},"wordCount":521,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37453\/","url":"https:\/\/atmokpo.com\/w\/37453\/","name":"UWP Development, Date and Time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:57:41+00:00","dateModified":"2024-11-01T11:02:40+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37453\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37453\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37453\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Date and Time"}]},{"@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\/37453","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=37453"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37453\/revisions"}],"predecessor-version":[{"id":37454,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37453\/revisions\/37454"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37453"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37453"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}