{"id":37037,"date":"2024-11-01T09:54:17","date_gmt":"2024-11-01T09:54:17","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37037"},"modified":"2024-11-01T11:42:30","modified_gmt":"2024-11-01T11:42:30","slug":"mastering-kotlin-android-app-development-course-creating-a-kakaotalk-password-verification-screen","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37037\/","title":{"rendered":"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen"},"content":{"rendered":"<p><body><\/p>\n<article>\n<p>\n            Hello! In this tutorial, we will learn how to develop Android apps using Kotlin.<br \/>\n            Specifically, we will implement a KakaoTalk password verification screen and get acquainted with various techniques,<br \/>\n            such as UI composition, event handling, and applying simple animations.\n        <\/p>\n<h2>Table of Contents<\/h2>\n<ol>\n<li><a href=\"#section1\">Environment Setup<\/a><\/li>\n<li><a href=\"#section2\">Project Creation<\/a><\/li>\n<li><a href=\"#section3\">UI Design<\/a><\/li>\n<li><a href=\"#section4\">Implementing Password Verification Logic<\/a><\/li>\n<li><a href=\"#section5\">Adding Animation<\/a><\/li>\n<li><a href=\"#section6\">Final Result Check<\/a><\/li>\n<\/ol>\n<h2 id=\"section1\">1. Environment Setup<\/h2>\n<p>\n            Before developing Android apps, you need to set up the appropriate development environment.<br \/>\n            It is necessary to install Android Studio along with the Android SDK and related tools.<br \/>\n            Once the installation is complete, run Android Studio to create a new project.\n        <\/p>\n<h2 id=\"section2\">2. Project Creation<\/h2>\n<p>\n            Please follow the steps below to create a new project.\n        <\/p>\n<ol>\n<li>Open Android Studio and click on &#8220;Start a new Android Studio project&#8221;.<\/li>\n<li>Select &#8220;Empty Activity&#8221; and click &#8220;Next&#8221;.<\/li>\n<li>Enter the project name, set the package name and storage location, then click &#8220;Finish&#8221;.<\/li>\n<\/ol>\n<h2 id=\"section3\">3. UI Design<\/h2>\n<p>\n            Once the project is created, it&#8217;s time to design the UI.<br \/>\n            We will modify the `activity_main.xml` file to create the password input screen.<br \/>\n            Here is the basic XML code.\n        <\/p>\n<pre>\n            <code>\n                &lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n                &lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"match_parent\"\n                    android:padding=\"16dp\"&gt;\n\n                    &lt;TextView\n                        android:id=\"@+id\/textViewTitle\"\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:text=\"Password Verification\"\n                        android:textSize=\"24sp\"\n                        android:layout_centerHorizontal=\"true\"\n                        android:layout_marginBottom=\"32dp\"\/&gt;\n\n                    &lt;EditText\n                        android:id=\"@+id\/editTextPassword\"\n                        android:layout_width=\"match_parent\"\n                        android:layout_height=\"wrap_content\"\n                        android:hint=\"Enter Password\"\n                        android:inputType=\"textPassword\"\n                        android:layout_below=\"@id\/textViewTitle\"\n                        android:layout_marginBottom=\"16dp\"\/&gt;\n\n                    &lt;Button\n                        android:id=\"@+id\/buttonConfirm\"\n                        android:layout_width=\"match_parent\"\n                        android:layout_height=\"wrap_content\"\n                        android:text=\"Confirm\"\n                        android:layout_below=\"@id\/editTextPassword\"\/&gt;\n                &lt;\/RelativeLayout&gt;\n            <\/code>\n        <\/pre>\n<p>\n            The above code constructs a simple password input screen.<br \/>\n            The TextView displays the screen title, the EditText allows the user to enter a password,<br \/>\n            and the Button is used to perform the password verification function.\n        <\/p>\n<h2 id=\"section4\">4. Implementing Password Verification Logic<\/h2>\n<p>\n            With the UI ready, let&#8217;s implement the password verification logic.<br \/>\n            We handle the click event of the password verification button in the `MainActivity.kt` file.\n        <\/p>\n<pre>\n            <code>\n                package com.example.passwordcheck\n\n                import android.os.Bundle\n                import android.widget.Button\n                import android.widget.EditText\n                import android.widget.Toast\n                import androidx.appcompat.app.AppCompatActivity\n\n                class MainActivity : AppCompatActivity() {\n\n                    override fun onCreate(savedInstanceState: Bundle?) {\n                        super.onCreate(savedInstanceState)\n                        setContentView(R.layout.activity_main)\n\n                        val editTextPassword = findViewById&lt;EditText&gt;(R.id.editTextPassword)\n                        val buttonConfirm = findViewById&lt;Button&gt;(R.id.buttonConfirm)\n\n                        buttonConfirm.setOnClickListener {\n                            val password = editTextPassword.text.toString()\n                            if (password == \"KotlinPassword\") {  \/\/ Change to actual password.\n                                Toast.makeText(this, \"Password has been verified!\", Toast.LENGTH_SHORT).show()\n                            } else {\n                                Toast.makeText(this, \"Incorrect password.\", Toast.LENGTH_SHORT).show()\n                            }\n                        }\n                    }\n                }\n            <\/code>\n        <\/pre>\n<p>\n            The above code implements the password verification logic. It checks if the password entered by the user matches<br \/>\n            &#8220;KotlinPassword&#8221; and displays an appropriate message via a toast depending on whether it matches or not.\n        <\/p>\n<h2 id=\"section5\">5. Adding Animation<\/h2>\n<p>\n            To improve user experience, let&#8217;s add an animation when the button is clicked.<br \/>\n            We can give a slight press effect to the button whenever the user clicks it.<br \/>\n            For this, we will add animation resources to the XML file.\n        <\/p>\n<pre>\n            <code>\n                &lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n                &lt;set xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"&gt;\n                    &lt;scale\n                        android:fromXScale=\"1.0\"\n                        android:toXScale=\"0.9\"\n                        android:fromYScale=\"1.0\"\n                        android:toYScale=\"0.9\"\n                        android:pivotX=\"50%\"\n                        android:pivotY=\"50%\"\n                        android:duration=\"100\"\n                        android:repeatCount=\"1\"\n                        android:repeatMode=\"reverse\"\/&gt;\n                &lt;\/set&gt;\n            <\/code>\n        <\/pre>\n<p>\n            Save the animation XML file in the `res\/anim` folder as shown above.<br \/>\n            Then, apply this animation in the `MainActivity.kt` file when the button is clicked.\n        <\/p>\n<pre>\n            <code>\n                \/\/ ... Existing code omitted ...\n\n                val buttonConfirm = findViewById&lt;Button&gt;(R.id.buttonConfirm)\n                val animation = AnimationUtils.loadAnimation(this, R.anim.button_click)\n\n                buttonConfirm.setOnClickListener {\n                    buttonConfirm.startAnimation(animation)\n                    \/\/ ... Existing password verification logic ...\n                }\n            <\/code>\n        <\/pre>\n<h2 id=\"section6\">6. Final Result Check<\/h2>\n<p>\n            Once all the code is ready, let&#8217;s run the project to check the final result.<br \/>\n            Test whether the KakaoTalk password verification screen is functioning properly.<br \/>\n            When you enter a password and click the &#8220;Confirm&#8221; button, a message will be displayed<br \/>\n            depending on whether the entered password is correct or not.\n        <\/p>\n<h2>Conclusion<\/h2>\n<p>\n            In this tutorial, we learned how to create a KakaoTalk password verification screen using Kotlin.<br \/>\n            We explored UI composition, password verification logic, and applied animation effects to build<br \/>\n            a user-friendly interface.<br \/>\n            Keep developing more diverse apps to enhance your skills in the future!\n        <\/p>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! In this tutorial, we will learn how to develop Android apps using Kotlin. Specifically, we will implement a KakaoTalk password verification screen and get acquainted with various techniques, such as UI composition, event handling, and applying simple animations. Table of Contents Environment Setup Project Creation UI Design Implementing Password Verification Logic Adding Animation Final &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37037\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen&#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":[143],"tags":[],"class_list":["post-37037","post","type-post","status-publish","format-standard","hentry","category-kotlin-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen - \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\/37037\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! In this tutorial, we will learn how to develop Android apps using Kotlin. Specifically, we will implement a KakaoTalk password verification screen and get acquainted with various techniques, such as UI composition, event handling, and applying simple animations. Table of Contents Environment Setup Project Creation UI Design Implementing Password Verification Logic Adding Animation Final &hellip; \ub354 \ubcf4\uae30 &quot;Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37037\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:54:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:42:30+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\/37037\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37037\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen\",\"datePublished\":\"2024-11-01T09:54:17+00:00\",\"dateModified\":\"2024-11-01T11:42:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37037\/\"},\"wordCount\":456,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37037\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37037\/\",\"name\":\"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:54:17+00:00\",\"dateModified\":\"2024-11-01T11:42:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37037\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37037\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37037\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen\"}]},{\"@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":"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen - \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\/37037\/","og_locale":"ko_KR","og_type":"article","og_title":"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! In this tutorial, we will learn how to develop Android apps using Kotlin. Specifically, we will implement a KakaoTalk password verification screen and get acquainted with various techniques, such as UI composition, event handling, and applying simple animations. Table of Contents Environment Setup Project Creation UI Design Implementing Password Verification Logic Adding Animation Final &hellip; \ub354 \ubcf4\uae30 \"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen\"","og_url":"https:\/\/atmokpo.com\/w\/37037\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:54:17+00:00","article_modified_time":"2024-11-01T11:42:30+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\/37037\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37037\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen","datePublished":"2024-11-01T09:54:17+00:00","dateModified":"2024-11-01T11:42:30+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37037\/"},"wordCount":456,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37037\/","url":"https:\/\/atmokpo.com\/w\/37037\/","name":"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:54:17+00:00","dateModified":"2024-11-01T11:42:30+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37037\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37037\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37037\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Mastering Kotlin Android App Development Course, Creating a KakaoTalk Password Verification Screen"}]},{"@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\/37037","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=37037"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37037\/revisions"}],"predecessor-version":[{"id":37038,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37037\/revisions\/37038"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37037"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37037"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37037"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}