{"id":37227,"date":"2024-11-01T09:55:53","date_gmt":"2024-11-01T09:55:53","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37227"},"modified":"2024-11-01T11:36:06","modified_gmt":"2024-11-01T11:36:06","slug":"java-android-app-development-course-creating-a-kakaotalk-password-verification-screen","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37227\/","title":{"rendered":"Java Android App Development Course, Creating a KakaoTalk Password Verification Screen"},"content":{"rendered":"<p><body><\/p>\n<article>\n<p>Hello! In this tutorial, we will introduce how to develop Android apps using Java. Specifically, through a project that creates a password confirmation screen similar to KakaoTalk, you will learn various concepts of Android development. This project includes everything from basic UI composition to data validation and event handling, providing you with a near-real experience.<\/p>\n<h2>Project Overview<\/h2>\n<p>The password confirmation screen requires users to input a password and provides a feature to verify it. This is an essential function in many applications, playing an important role in user authentication and information protection. Through this project, you will learn the following skills:<\/p>\n<ul>\n<li>Creating a new project in Android Studio<\/li>\n<li>UI design through XML layout files<\/li>\n<li>Connecting UI and logic using Java<\/li>\n<li>Password validation and user feedback handling<\/li>\n<\/ul>\n<h2>1. Setting Up the Development Environment<\/h2>\n<p>The first thing you need to do for Android app development is to set up the development environment. Download and install Android Studio to establish a basic development environment. After installation, create a new project. Name the project &#8216;PasswordCheckApp&#8217; and select the &#8216;Empty Activity&#8217; template.<\/p>\n<h2>2. Configuring the XML Layout<\/h2>\n<p>After creating the project, modify the &#8216;activity_main.xml&#8217; file located in the &#8216;res\/layout&#8217; folder to design the user interface (UI).<\/p>\n<pre><code>&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 Confirmation\"\n        android:textSize=\"24sp\"\n        android:layout_centerHorizontal=\"true\" \n        android:layout_marginBottom=\"24dp\"\/&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 your password\"\n        android:inputType=\"textPassword\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/buttonConfirm\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Confirm\"\n        android:layout_below=\"@id\/editTextPassword\"\n        android:layout_centerHorizontal=\"true\"\n        android:layout_marginTop=\"16dp\"\/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textViewResult\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_below=\"@id\/buttonConfirm\"\n        android:layout_centerHorizontal=\"true\"\n        android:layout_marginTop=\"16dp\"\n        android:textSize=\"16sp\"\/&gt;\n&lt;\/RelativeLayout&gt;\n<\/code><\/pre>\n<p>The above XML code creates a title, a password input field, a confirm button, and a TextView to display the result on the screen. Users can enter their passwords and check the results using this layout.<\/p>\n<h2>3. Implementing the Main Activity<\/h2>\n<p>After configuring the XML layout, let&#8217;s connect the UI and logic in the Java file. Open the &#8216;MainActivity.java&#8217; file and write the following code:<\/p>\n<pre><code>package com.example.passwordcheckapp;\n\nimport androidx.appcompat.app.AppCompatActivity;\nimport android.os.Bundle;\nimport android.view.View;\nimport android.widget.Button;\nimport android.widget.EditText;\nimport android.widget.TextView;\nimport android.widget.Toast;\n\npublic class MainActivity extends AppCompatActivity {\n\n    private EditText editTextPassword;\n    private Button buttonConfirm;\n    private TextView textViewResult;\n\n    private static final String CORRECT_PASSWORD = \"mypassword\"; \/\/ Correct password\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        editTextPassword = findViewById(R.id.editTextPassword);\n        buttonConfirm = findViewById(R.id.buttonConfirm);\n        textViewResult = findViewById(R.id.textViewResult);\n\n        buttonConfirm.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                checkPassword();\n            }\n        });\n    }\n\n    private void checkPassword() {\n        String inputPassword = editTextPassword.getText().toString();\n\n        if (inputPassword.isEmpty()) {\n            Toast.makeText(this, \"Please enter your password.\", Toast.LENGTH_SHORT).show();\n            return;\n        }\n\n        if (inputPassword.equals(CORRECT_PASSWORD)) {\n            textViewResult.setText(\"The password matches.\");\n        } else {\n            textViewResult.setText(\"The password is incorrect.\");\n        }\n    }\n}\n<\/code><\/pre>\n<p>The above Java code implements a basic password verification logic. It compares the password entered by the user with the correct password and displays the result in the TextView. If the password is incorrect, the user is notified with a Toast message.<\/p>\n<h2>4. Running and Testing the Project<\/h2>\n<p>Once you have written the code, you can run the app on the Android Studio emulator or a real device. When the user enters the password and clicks the &#8216;Confirm&#8217; button, it checks whether the password matches and displays the result on the screen.<\/p>\n<h2>5. Implementing Additional Features<\/h2>\n<p>The password confirmation screen provides basic functionality, but you can implement additional features to enhance the user experience. For example, you can add a feature to show or hide the password entered in the input field or implement a pattern lock method for password input.<\/p>\n<h3>Adding a Show\/Hide Password Feature<\/h3>\n<p>Let&#8217;s add a feature that allows users to hide the password they entered. To do this, first, add an icon corresponding to the &#8216;EditText&#8217;, and implement a click event to show or hide the password.<\/p>\n<pre><code>&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 Confirmation\"\n        android:textSize=\"24sp\"\n        android:layout_centerHorizontal=\"true\"\n        android:layout_marginBottom=\"24dp\"\/&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 your password\"\n        android:inputType=\"textPassword\"\/&gt;\n\n    &lt;ImageView\n        android:id=\"@+id\/imageViewTogglePassword\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_toRightOf=\"@id\/editTextPassword\"\n        android:layout_marginStart=\"8dp\"\n        android:src=\"@drawable\/ic_visibility_off\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/buttonConfirm\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Confirm\"\n        android:layout_below=\"@id\/editTextPassword\"\n        android:layout_centerHorizontal=\"true\"\n        android:layout_marginTop=\"16dp\"\/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textViewResult\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_below=\"@id\/buttonConfirm\"\n        android:layout_centerHorizontal=\"true\"\n        android:layout_marginTop=\"16dp\"\n        android:textSize=\"16sp\"\/&gt;\n&lt;\/RelativeLayout&gt;\n<\/code><\/pre>\n<p>You also need to modify the Java code to add the password visualization toggle function. Add the following code in &#8216;MainActivity.java&#8217;:<\/p>\n<pre><code>imageViewTogglePassword = findViewById(R.id.imageViewTogglePassword);\n\n        imageViewTogglePassword.setOnClickListener(new View.OnClickListener() {\n            boolean isPasswordVisible = false;\n\n            @Override\n            public void onClick(View v) {\n                if (isPasswordVisible) {\n                    editTextPassword.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);\n                    imageViewTogglePassword.setImageResource(R.drawable.ic_visibility_off);\n                } else {\n                    editTextPassword.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);\n                    imageViewTogglePassword.setImageResource(R.drawable.ic_visibility);\n                }\n                isPasswordVisible = !isPasswordVisible;\n                editTextPassword.setSelection(editTextPassword.length());\n            }\n        });<\/code><\/pre>\n<p>With the above code, we have set it up so that users can more conveniently enter their passwords. Now, clicking the icon will allow them to either show or hide the password.<\/p>\n<h2>Conclusion<\/h2>\n<p>Through this tutorial, you learned how to create a simple password confirmation screen using Java and Android. Since you learned about basic UI composition and handling user interactions, this will provide a good opportunity to expand the app by adding more complex features in the future. After practice, think about additional features and improvements, and trying them out is also a good way to learn.<\/p>\n<p>Additionally, check out more resources and communities related to Android development, and challenge yourself with various projects. I hope this will help you in your Android development journey!<\/p>\n<footer>\n<h3>Inquiries<\/h3>\n<p>Please leave any inquiries regarding this tutorial in the comments. Active feedback is a great help to us!<\/p>\n<\/footer>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! In this tutorial, we will introduce how to develop Android apps using Java. Specifically, through a project that creates a password confirmation screen similar to KakaoTalk, you will learn various concepts of Android development. This project includes everything from basic UI composition to data validation and event handling, providing you with a near-real experience. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37227\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java 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":[137],"tags":[],"class_list":["post-37227","post","type-post","status-publish","format-standard","hentry","category-java-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Java 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\/37227\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java 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 introduce how to develop Android apps using Java. Specifically, through a project that creates a password confirmation screen similar to KakaoTalk, you will learn various concepts of Android development. This project includes everything from basic UI composition to data validation and event handling, providing you with a near-real experience. &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Creating a KakaoTalk Password Verification Screen&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37227\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36: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=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37227\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37227\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Creating a KakaoTalk Password Verification Screen\",\"datePublished\":\"2024-11-01T09:55:53+00:00\",\"dateModified\":\"2024-11-01T11:36:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37227\/\"},\"wordCount\":627,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37227\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37227\/\",\"name\":\"Java 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:55:53+00:00\",\"dateModified\":\"2024-11-01T11:36:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37227\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37227\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37227\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java 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":"Java 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\/37227\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Creating a KakaoTalk Password Verification Screen - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! In this tutorial, we will introduce how to develop Android apps using Java. Specifically, through a project that creates a password confirmation screen similar to KakaoTalk, you will learn various concepts of Android development. This project includes everything from basic UI composition to data validation and event handling, providing you with a near-real experience. &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Creating a KakaoTalk Password Verification Screen\"","og_url":"https:\/\/atmokpo.com\/w\/37227\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:53+00:00","article_modified_time":"2024-11-01T11:36: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":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37227\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37227\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Creating a KakaoTalk Password Verification Screen","datePublished":"2024-11-01T09:55:53+00:00","dateModified":"2024-11-01T11:36:06+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37227\/"},"wordCount":627,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37227\/","url":"https:\/\/atmokpo.com\/w\/37227\/","name":"Java 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:55:53+00:00","dateModified":"2024-11-01T11:36:06+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37227\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37227\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37227\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java 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\/37227","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=37227"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37227\/revisions"}],"predecessor-version":[{"id":37228,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37227\/revisions\/37228"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}