{"id":37263,"date":"2024-11-01T09:56:10","date_gmt":"2024-11-01T09:56:10","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37263"},"modified":"2024-11-01T11:35:57","modified_gmt":"2024-11-01T11:35:57","slug":"java-android-app-development-course-creating-sign-up-and-login-features","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37263\/","title":{"rendered":"Java Android App Development Course, Creating Sign Up and Login Features"},"content":{"rendered":"<p>Android app development is an interesting field of mobile application development, and Java is widely used as the primary programming language for Android. This article will provide a detailed explanation of how to implement a simple sign-up and login feature using Java. In this process, we will use Android Studio and utilize Firebase as the backend for login and sign-up functionalities.<\/p>\n<h2>1. Project Setup<\/h2>\n<ol>\n<li>Launch Android Studio.<\/li>\n<li>Create a new project. Select &#8220;Empty Activity&#8221; and enter the project name and package name.<\/li>\n<li>Create a project in the Firebase Console to integrate with Firebase, and add the Android app.<\/li>\n<li>Download the google-services.json file and add it to the app folder of the project.<\/li>\n<li>Modify the build.gradle file to add Firebase dependencies.<\/li>\n<\/ol>\n<pre>\n<code>\n    dependencies {\n        implementation 'com.google.firebase:firebase-auth:21.0.1'\n        \/\/ Other dependencies\n    }\n<\/code>\n<\/pre>\n<h2>2. Firebase Setup<\/h2>\n<p>Set up Firebase Authentication service to allow sign-up and login with email and password.<\/p>\n<ol>\n<li>Select Authentication in the Firebase Console and click &#8220;Get Started.&#8221;<\/li>\n<li>Enable &#8220;Email\/Password&#8221; under sign-in methods.<\/li>\n<\/ol>\n<h2>3. Create XML Layouts<\/h2>\n<p>Create individual layout files for the sign-up and login screens.<\/p>\n<h3>activity_signup.xml<\/h3>\n<pre>\n<code>\n&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"\n    android:padding=\"16dp\"&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/signupEmail\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Enter Email\" \/&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/signupPassword\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Enter Password\"\n        android:inputType=\"textPassword\" \/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/signupButton\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Sign Up\" \/&gt;\n\n&lt;\/LinearLayout&gt;\n<\/code>\n<\/pre>\n<h3>activity_login.xml<\/h3>\n<pre>\n<code>\n&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"\n    android:padding=\"16dp\"&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/loginEmail\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Enter Email\" \/&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/loginPassword\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Enter Password\"\n        android:inputType=\"textPassword\" \/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/loginButton\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Login\" \/&gt;\n\n&lt;\/LinearLayout&gt;\n<\/code>\n<\/pre>\n<h2>4. Implement Java Code<\/h2>\n<p>Now, implement the sign-up and login functionalities in the Activity class.<\/p>\n<h3>SignupActivity.java<\/h3>\n<pre>\n<code>\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.view.View;\nimport android.widget.Button;\nimport android.widget.EditText;\nimport android.widget.Toast;\n\nimport androidx.annotation.NonNull;\nimport androidx.appcompat.app.AppCompatActivity;\n\nimport com.google.firebase.auth.FirebaseAuth;\nimport com.google.firebase.auth.FirebaseUser;\n\npublic class SignupActivity extends AppCompatActivity {\n\n    private EditText signupEmail, signupPassword;\n    private Button signupButton;\n    private FirebaseAuth mAuth;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_signup);\n\n        signupEmail = findViewById(R.id.signupEmail);\n        signupPassword = findViewById(R.id.signupPassword);\n        signupButton = findViewById(R.id.signupButton);\n\n        mAuth = FirebaseAuth.getInstance();\n\n        signupButton.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                String email = signupEmail.getText().toString();\n                String password = signupPassword.getText().toString();\n\n                registerUser(email, password);\n            }\n        });\n    }\n\n    private void registerUser(String email, String password) {\n        mAuth.createUserWithEmailAndPassword(email, password)\n            .addOnCompleteListener(this, task -&gt; {\n                if (task.isSuccessful()) {\n                    FirebaseUser user = mAuth.getCurrentUser();\n                    Toast.makeText(SignupActivity.this, \"Sign-up Successful: \" + user.getEmail(), Toast.LENGTH_SHORT).show();\n                    startActivity(new Intent(SignupActivity.this, LoginActivity.class));\n                    finish();\n                } else {\n                    Toast.makeText(SignupActivity.this, \"Sign-up Failed: \" + task.getException().getMessage(), Toast.LENGTH_SHORT).show();\n                }\n            });\n    }\n}\n<\/code>\n<\/pre>\n<h3>LoginActivity.java<\/h3>\n<pre>\n<code>\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.view.View;\nimport android.widget.Button;\nimport android.widget.EditText;\nimport android.widget.Toast;\n\nimport androidx.annotation.NonNull;\nimport androidx.appcompat.app.AppCompatActivity;\n\nimport com.google.firebase.auth.FirebaseAuth;\nimport com.google.firebase.auth.FirebaseUser;\n\npublic class LoginActivity extends AppCompatActivity {\n\n    private EditText loginEmail, loginPassword;\n    private Button loginButton;\n    private FirebaseAuth mAuth;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_login);\n\n        loginEmail = findViewById(R.id.loginEmail);\n        loginPassword = findViewById(R.id.loginPassword);\n        loginButton = findViewById(R.id.loginButton);\n\n        mAuth = FirebaseAuth.getInstance();\n\n        loginButton.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                String email = loginEmail.getText().toString();\n                String password = loginPassword.getText().toString();\n\n                loginUser(email, password);\n            }\n        });\n    }\n\n    private void loginUser(String email, String password) {\n        mAuth.signInWithEmailAndPassword(email, password)\n            .addOnCompleteListener(this, task -&gt; {\n                if (task.isSuccessful()) {\n                    FirebaseUser user = mAuth.getCurrentUser();\n                    Toast.makeText(LoginActivity.this, \"Login Successful: \" + user.getEmail(), Toast.LENGTH_SHORT).show();\n                    \/\/ Move to MainActivity\n                } else {\n                    Toast.makeText(LoginActivity.this, \"Login Failed: \" + task.getException().getMessage(), Toast.LENGTH_SHORT).show();\n                }\n            });\n    }\n}\n<\/code>\n<\/pre>\n<h2>5. Testing<\/h2>\n<p>Run the app, sign up, and check if the login functionality works correctly. You can verify the registered user information through the Authentication section in the Firebase Console.<\/p>\n<h2>6. Conclusion<\/h2>\n<p>In this tutorial, we simply implemented the sign-up and login functionalities using Java in Android app development with Firebase. This basic feature will serve as a stepping stone to create more advanced applications.<\/p>\n<p>We plan to cover more topics related to Android app development in the future. We hope this helps in your Android development journey!<\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/developer.android.com\/docs\">Android Developers Documentation<\/a><\/li>\n<li><a href=\"https:\/\/firebase.google.com\/docs\/auth\/android\/start\">Firebase Authentication Documentation<\/a><\/li>\n<li><a href=\"https:\/\/www.udacity.com\/course\/android-developer-nanodegree-by-google--nd801\">Udacity Android Developer Nanodegree<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Android app development is an interesting field of mobile application development, and Java is widely used as the primary programming language for Android. This article will provide a detailed explanation of how to implement a simple sign-up and login feature using Java. In this process, we will use Android Studio and utilize Firebase as the &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37263\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Creating Sign Up and Login Features&#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-37263","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 Sign Up and Login Features - \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\/37263\/\" \/>\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 Sign Up and Login Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Android app development is an interesting field of mobile application development, and Java is widely used as the primary programming language for Android. This article will provide a detailed explanation of how to implement a simple sign-up and login feature using Java. In this process, we will use Android Studio and utilize Firebase as the &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Creating Sign Up and Login Features&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37263\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:56:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:35:57+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\/37263\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37263\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Creating Sign Up and Login Features\",\"datePublished\":\"2024-11-01T09:56:10+00:00\",\"dateModified\":\"2024-11-01T11:35:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37263\/\"},\"wordCount\":298,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37263\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37263\/\",\"name\":\"Java Android App Development Course, Creating Sign Up and Login Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:56:10+00:00\",\"dateModified\":\"2024-11-01T11:35:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37263\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37263\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37263\/#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 Sign Up and Login Features\"}]},{\"@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 Sign Up and Login Features - \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\/37263\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Creating Sign Up and Login Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Android app development is an interesting field of mobile application development, and Java is widely used as the primary programming language for Android. This article will provide a detailed explanation of how to implement a simple sign-up and login feature using Java. In this process, we will use Android Studio and utilize Firebase as the &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Creating Sign Up and Login Features\"","og_url":"https:\/\/atmokpo.com\/w\/37263\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:56:10+00:00","article_modified_time":"2024-11-01T11:35:57+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\/37263\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37263\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Creating Sign Up and Login Features","datePublished":"2024-11-01T09:56:10+00:00","dateModified":"2024-11-01T11:35:57+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37263\/"},"wordCount":298,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37263\/","url":"https:\/\/atmokpo.com\/w\/37263\/","name":"Java Android App Development Course, Creating Sign Up and Login Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:56:10+00:00","dateModified":"2024-11-01T11:35:57+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37263\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37263\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37263\/#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 Sign Up and Login Features"}]},{"@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\/37263","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=37263"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37263\/revisions"}],"predecessor-version":[{"id":37264,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37263\/revisions\/37264"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37263"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37263"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}