{"id":36925,"date":"2024-11-01T09:53:23","date_gmt":"2024-11-01T09:53:23","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36925"},"modified":"2024-11-01T11:42:59","modified_gmt":"2024-11-01T11:42:59","slug":"kotlin-android-app-development-course-storing-in-shared-preferences","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36925\/","title":{"rendered":"kotlin android app development course, storing in shared preferences"},"content":{"rendered":"<p>Hello! Today, we will take a closer look at an important topic in Android app development: &#8220;Shared Preferences.&#8221; Shared Preferences is one of Android&#8217;s built-in methods for data storage that helps you save data as simple key-value pairs. It is primarily useful for storing user settings or simple data.<\/p>\n<h2>1. What are Shared Preferences?<\/h2>\n<p>Shared Preferences is an API used for storing small amounts of data within an Android application. It is suitable for storing basic data types such as strings, integers, and booleans. This data is retained even when the app is closed or restarted, allowing users to save and retrieve their settings information.<\/p>\n<h2>2. When to Use<\/h2>\n<p>Shared Preferences is useful in the following cases:<\/p>\n<ul>\n<li>Storing user login information<\/li>\n<li>User settings (theme, language, notification preferences, etc.)<\/li>\n<li>Maintaining the app&#8217;s state (e.g., last viewed page)<\/li>\n<\/ul>\n<h2>3. Basic Setup for Using Shared Preferences<\/h2>\n<p>To use Shared Preferences, you first need to create an instance through the application context. Here\u2019s a basic usage example:<\/p>\n<h3>3.1. Creating a SharedPreferences Instance<\/h3>\n<pre><code>val sharedPreferences = getSharedPreferences(\"MyPreferences\", Context.MODE_PRIVATE)<\/code><\/pre>\n<p>Here, &#8220;MyPreferences&#8221; is the name of the data you want to store.<\/p>\n<h2>4. Saving Data<\/h2>\n<p>Here is how to save data in Shared Preferences:<\/p>\n<h3>4.1. Saving a String<\/h3>\n<pre><code>val editor = sharedPreferences.edit()\neditor.putString(\"username\", \"JohnDoe\")\neditor.apply()<\/code><\/pre>\n<h3>4.2. Saving an Integer<\/h3>\n<pre><code>val editor = sharedPreferences.edit()\neditor.putInt(\"userAge\", 30)\neditor.apply()<\/code><\/pre>\n<h3>4.3. Saving a Boolean Value<\/h3>\n<pre><code>val editor = sharedPreferences.edit()\neditor.putBoolean(\"notificationsEnabled\", true)\neditor.apply()<\/code><\/pre>\n<h2>5. Reading Data<\/h2>\n<p>Here\u2019s how to read the saved data:<\/p>\n<h3>5.1. Reading a String<\/h3>\n<pre><code>val username = sharedPreferences.getString(\"username\", \"defaultUser\")<\/code><\/pre>\n<h3>5.2. Reading an Integer<\/h3>\n<pre><code>val userAge = sharedPreferences.getInt(\"userAge\", 0)<\/code><\/pre>\n<h3>5.3. Reading a Boolean Value<\/h3>\n<pre><code>val notificationsEnabled = sharedPreferences.getBoolean(\"notificationsEnabled\", false)<\/code><\/pre>\n<h2>6. Deleting Data<\/h2>\n<p>If you want to delete specific data, you can do it as follows:<\/p>\n<pre><code>val editor = sharedPreferences.edit()\neditor.remove(\"username\")\neditor.apply()<\/code><\/pre>\n<h2>7. Deleting All Data<\/h2>\n<p>To delete all data, you can use the clear() method:<\/p>\n<pre><code>val editor = sharedPreferences.edit()\neditor.clear()\neditor.apply()<\/code><\/pre>\n<h2>8. Example: Saving User Settings<\/h2>\n<p>Now, let&#8217;s go through a simple example of saving and loading user settings. First, create a new project in Android Studio. We will create a simple UI that takes the user&#8217;s name and age and saves it in Shared Preferences.<\/p>\n<h3>8.1. Layout File<\/h3>\n<p>Modify the res\/layout\/activity_main.xml file as follows:<\/p>\n<pre><code>&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\/editTextUsername\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Username\"\/&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/editTextAge\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"User Age\"\n        android:inputType=\"number\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/buttonSave\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Save\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/buttonLoad\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Load\"\/&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_marginTop=\"16dp\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h3>8.2. MainActivity.kt File<\/h3>\n<p>Now, modify the MainActivity.kt file to save and load user input:<\/p>\n<pre><code>import android.content.Context\nimport android.os.Bundle\nimport android.widget.Button\nimport android.widget.EditText\nimport android.widget.TextView\nimport androidx.appcompat.app.AppCompatActivity\n\nclass MainActivity : AppCompatActivity() {\n    private lateinit var sharedPreferences: SharedPreferences\n    private lateinit var usernameEditText: EditText\n    private lateinit var ageEditText: EditText\n    private lateinit var saveButton: Button\n    private lateinit var loadButton: Button\n    private lateinit var resultTextView: TextView\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        setContentView(R.layout.activity_main)\n\n        sharedPreferences = getSharedPreferences(\"MyPreferences\", Context.MODE_PRIVATE)\n        usernameEditText = findViewById(R.id.editTextUsername)\n        ageEditText = findViewById(R.id.editTextAge)\n        saveButton = findViewById(R.id.buttonSave)\n        loadButton = findViewById(R.id.buttonLoad)\n        resultTextView = findViewById(R.id.textViewResult)\n\n        saveButton.setOnClickListener { saveData() }\n        loadButton.setOnClickListener { loadData() }\n    }\n\n    private fun saveData() {\n        val editor = sharedPreferences.edit()\n        val username = usernameEditText.text.toString()\n        val userAge = ageEditText.text.toString().toIntOrNull() ?: 0\n\n        editor.putString(\"username\", username)\n        editor.putInt(\"userAge\", userAge)\n        editor.apply()\n\n        resultTextView.text = \"Saved: $username, Age: $userAge\"\n    }\n\n    private fun loadData() {\n        val username = sharedPreferences.getString(\"username\", \"defaultUser\")\n        val userAge = sharedPreferences.getInt(\"userAge\", 0)\n\n        resultTextView.text = \"Loaded: $username, Age: $userAge\"\n    }\n}<\/code><\/pre>\n<h3>8.3. Running the App<\/h3>\n<p>Now run the app. After entering the username and age, clicking the &#8216;Save&#8217; button will save the data to Preferences. Clicking the &#8216;Load&#8217; button will display the saved data.<\/p>\n<h2>9. Tips and Precautions<\/h2>\n<ul>\n<li>Do not use Shared Preferences to store sensitive information such as passwords. For data where security is crucial, other data storage methods should be considered.<\/li>\n<li>Shared Preferences is suitable for small amounts of data. If you need to store large amounts of data or complex data structures, it is recommended to use an SQLite database or Room library.<\/li>\n<li>To reflect data changes immediately, you can use commit() instead of apply(), but this may block the UI thread and should be avoided.<\/li>\n<\/ul>\n<h2>10. Conclusion<\/h2>\n<p>In this tutorial, we learned how to use Shared Preferences in Android app development. We can easily save and load user settings through Preferences. By knowing various data storage methods and applying them in appropriate situations, broader app development becomes possible.<\/p>\n<p>Now, try utilizing Shared Preferences to enhance user experience in your own apps. In the next tutorial, we will cover more advanced data storage methods. Thank you!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! Today, we will take a closer look at an important topic in Android app development: &#8220;Shared Preferences.&#8221; Shared Preferences is one of Android&#8217;s built-in methods for data storage that helps you save data as simple key-value pairs. It is primarily useful for storing user settings or simple data. 1. What are Shared Preferences? Shared &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36925\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;kotlin android app development course, storing in shared preferences&#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-36925","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>kotlin android app development course, storing in shared preferences - \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\/36925\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"kotlin android app development course, storing in shared preferences - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! Today, we will take a closer look at an important topic in Android app development: &#8220;Shared Preferences.&#8221; Shared Preferences is one of Android&#8217;s built-in methods for data storage that helps you save data as simple key-value pairs. It is primarily useful for storing user settings or simple data. 1. What are Shared Preferences? Shared &hellip; \ub354 \ubcf4\uae30 &quot;kotlin android app development course, storing in shared preferences&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36925\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:53:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:42:59+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\/36925\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36925\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"kotlin android app development course, storing in shared preferences\",\"datePublished\":\"2024-11-01T09:53:23+00:00\",\"dateModified\":\"2024-11-01T11:42:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36925\/\"},\"wordCount\":516,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36925\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36925\/\",\"name\":\"kotlin android app development course, storing in shared preferences - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:53:23+00:00\",\"dateModified\":\"2024-11-01T11:42:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36925\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36925\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36925\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"kotlin android app development course, storing in shared preferences\"}]},{\"@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":"kotlin android app development course, storing in shared preferences - \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\/36925\/","og_locale":"ko_KR","og_type":"article","og_title":"kotlin android app development course, storing in shared preferences - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! Today, we will take a closer look at an important topic in Android app development: &#8220;Shared Preferences.&#8221; Shared Preferences is one of Android&#8217;s built-in methods for data storage that helps you save data as simple key-value pairs. It is primarily useful for storing user settings or simple data. 1. What are Shared Preferences? Shared &hellip; \ub354 \ubcf4\uae30 \"kotlin android app development course, storing in shared preferences\"","og_url":"https:\/\/atmokpo.com\/w\/36925\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:53:23+00:00","article_modified_time":"2024-11-01T11:42:59+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\/36925\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36925\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"kotlin android app development course, storing in shared preferences","datePublished":"2024-11-01T09:53:23+00:00","dateModified":"2024-11-01T11:42:59+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36925\/"},"wordCount":516,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36925\/","url":"https:\/\/atmokpo.com\/w\/36925\/","name":"kotlin android app development course, storing in shared preferences - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:53:23+00:00","dateModified":"2024-11-01T11:42:59+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36925\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36925\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36925\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"kotlin android app development course, storing in shared preferences"}]},{"@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\/36925","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=36925"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36925\/revisions"}],"predecessor-version":[{"id":36926,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36925\/revisions\/36926"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36925"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36925"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36925"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}