{"id":37253,"date":"2024-11-01T09:56:06","date_gmt":"2024-11-01T09:56:06","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37253"},"modified":"2024-11-01T11:35:59","modified_gmt":"2024-11-01T11:35:59","slug":"java-android-app-development-course-setting-permissions","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37253\/","title":{"rendered":"Java Android App Development Course, Setting Permissions"},"content":{"rendered":"<p><body><\/p>\n<p>When developing an Android app, setting permissions is essential to use specific features or data. In this tutorial, we will learn in detail about the importance and methods of permission settings in Android app development using Java.<\/p>\n<h2>1. The Importance of Permissions<\/h2>\n<p>Permissions are the rights that allow the app to access specific features. For example, when accessing the camera, microphone, location information, or storage, permissions must be requested. If permissions are not set, these features cannot be used, and they play an important role in protecting user data and enhancing security.<\/p>\n<h3>1.1 Types of Permissions<\/h3>\n<p>In Android, permissions can be divided into two main types:<\/p>\n<ul>\n<li><strong>Normal Permissions<\/strong>: Features that do not significantly affect the user and are automatically granted during app installation. E.g., internet access.<\/li>\n<li><strong>Dangerous Permissions<\/strong>: Features that access sensitive user information and require explicit user consent. E.g., location information, camera access.<\/li>\n<\/ul>\n<h2>2. How to Set Permissions<\/h2>\n<p>There are two steps to set permissions in an Android app. We will look at each method based on the type.<\/p>\n<h3>2.1 Declaring Permissions in the AndroidManifest.xml File<\/h3>\n<p>All permissions must first be declared in the <code>AndroidManifest.xml<\/code> file. This file defines the app&#8217;s basic information, including permission settings.<\/p>\n<pre><code>&lt;manifest xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n          package=\"com.example.myapp\"&gt;\n\n    &lt;uses-permission android:name=\"android.permission.CAMERA\"\/&gt;\n    &lt;uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"\/&gt;\n    &lt;uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\"\/&gt;\n\n    &lt;application\n        ...\n    &gt;\n        ...\n    &lt;\/application&gt;\n\n&lt;\/manifest&gt;<\/code><\/pre>\n<h3>2.2 Requesting Runtime Permissions<\/h3>\n<p>Starting from Android 6.0 (API level 23), when using dangerous permissions, user approval must be requested at runtime. You can use the code below to request permissions.<\/p>\n<pre><code>import android.Manifest;\nimport android.content.pm.PackageManager;\nimport androidx.annotation.NonNull;\nimport androidx.appcompat.app.AppCompatActivity;\nimport android.os.Bundle;\nimport android.widget.Toast;\nimport androidx.core.app.ActivityCompat;\nimport androidx.core.content.ContextCompat;\n\npublic class MainActivity extends AppCompatActivity {\n\n    private static final int CAMERA_REQUEST_CODE = 100;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        if (ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {\n            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.CAMERA}, CAMERA_REQUEST_CODE);\n        } else {\n            \/\/ If permission has already been granted\n            Toast.makeText(this, \"Camera permission has been granted.\", Toast.LENGTH_SHORT).show();\n        }\n    }\n\n    @Override\n    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {\n        super.onRequestPermissionsResult(requestCode, permissions, grantResults);\n        if (requestCode == CAMERA_REQUEST_CODE) {\n            if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {\n                Toast.makeText(this, \"Camera permission has been granted.\", Toast.LENGTH_SHORT).show();\n            } else {\n                Toast.makeText(this, \"Camera permission has been denied.\", Toast.LENGTH_SHORT).show();\n            }\n        }\n    }\n}<\/code><\/pre>\n<p>In the above code, the <code>ContextCompat.checkSelfPermission()<\/code> method checks if the permission has already been granted, and <code>ActivityCompat.requestPermissions()<\/code> requests approval. When the user chooses to allow or deny, the result is handled in the <code>onRequestPermissionsResult()<\/code> method.<\/p>\n<h2>3. Permission Handling Example<\/h2>\n<p>In the example below, we will request camera permission and implement functionality to take a photo if the user grants the request.<\/p>\n<pre><code>import android.Manifest;\nimport android.content.Intent;\nimport android.content.pm.PackageManager;\nimport android.graphics.Bitmap;\nimport android.net.Uri;\nimport android.os.Bundle;\nimport android.provider.MediaStore;\nimport android.widget.Button;\nimport android.widget.ImageView;\nimport android.widget.Toast;\nimport androidx.annotation.NonNull;\nimport androidx.appcompat.app.AppCompatActivity;\nimport androidx.core.app.ActivityCompat;\nimport androidx.core.content.ContextCompat;\n\npublic class MainActivity extends AppCompatActivity {\n\n    private static final int CAMERA_REQUEST_CODE = 100;\n    private static final int IMAGE_CAPTURE_REQUEST = 1;\n    private ImageView imageView;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        imageView = findViewById(R.id.imageView);\n        Button button = findViewById(R.id.captureButton);\n\n        button.setOnClickListener(v -> {\n            if (ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {\n                ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.CAMERA}, CAMERA_REQUEST_CODE);\n            } else {\n                openCamera();\n            }\n        });\n    }\n\n    private void openCamera() {\n        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);\n        if (intent.resolveActivity(getPackageManager()) != null) {\n            startActivityForResult(intent, IMAGE_CAPTURE_REQUEST);\n        }\n    }\n\n    @Override\n    protected void onActivityResult(int requestCode, int resultCode, Intent data) {\n        super.onActivityResult(requestCode, resultCode, data);\n        if (requestCode == IMAGE_CAPTURE_REQUEST && resultCode == RESULT_OK) {\n            Bundle extras = data.getExtras();\n            Bitmap imageBitmap = (Bitmap) extras.get(\"data\");\n            imageView.setImageBitmap(imageBitmap);\n        }\n    }\n\n    @Override\n    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {\n        super.onRequestPermissionsResult(requestCode, permissions, grantResults);\n        if (requestCode == CAMERA_REQUEST_CODE) {\n            if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {\n                openCamera();\n            } else {\n                Toast.makeText(this, \"Camera permission has been denied.\", Toast.LENGTH_SHORT).show();\n            }\n        }\n    }\n}<\/code><\/pre>\n<p>In this example, the user is prompted to request camera permission, and if granted, the camera app is opened, allowing them to take a picture. The captured image is displayed in the <code>ImageView<\/code>.<\/p>\n<h2>4. Tips Related to Permissions<\/h2>\n<p>When using permissions, consider the following tips:<\/p>\n<ul>\n<li><strong>Request Minimum Permissions<\/strong>: Since users may not accept them, only request the permissions you need.<\/li>\n<li><strong>Provide a Clear Reason<\/strong>: It\u2019s a good idea to provide a message that explains why the permission is needed, so users can understand the request.<\/li>\n<li><strong>Consider User Experience<\/strong>: To avoid disrupting the user&#8217;s flow during permission requests, ask for them at appropriate times.<\/li>\n<\/ul>\n<h2>5. Conclusion<\/h2>\n<p>In this tutorial, we discussed how to set permissions in Android apps. Since permissions are crucial in protecting user data, it is essential to set and request them correctly. Utilize what you learned in this tutorial when developing your apps in the future.<\/p>\n<h2>6. References<\/h2>\n<ul>\n<li><a href=\"https:\/\/developer.android.com\/guide\/topics\/permissions\/overview\">Android Developer &#8211; Permissions Overview<\/a><\/li>\n<li><a href=\"https:\/\/developer.android.com\/reference\/android\/Manifest.permission\">Android Developer &#8211; Manifest.permission<\/a><\/li>\n<li><a href=\"https:\/\/developer.android.com\/training\/permissions\/requesting\">Android Developer &#8211; Requesting Permissions<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When developing an Android app, setting permissions is essential to use specific features or data. In this tutorial, we will learn in detail about the importance and methods of permission settings in Android app development using Java. 1. The Importance of Permissions Permissions are the rights that allow the app to access specific features. For &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37253\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Setting Permissions&#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-37253","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, Setting Permissions - \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\/37253\/\" \/>\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, Setting Permissions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"When developing an Android app, setting permissions is essential to use specific features or data. In this tutorial, we will learn in detail about the importance and methods of permission settings in Android app development using Java. 1. The Importance of Permissions Permissions are the rights that allow the app to access specific features. For &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Setting Permissions&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37253\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:56:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:35: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\/37253\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37253\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Setting Permissions\",\"datePublished\":\"2024-11-01T09:56:06+00:00\",\"dateModified\":\"2024-11-01T11:35:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37253\/\"},\"wordCount\":451,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37253\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37253\/\",\"name\":\"Java Android App Development Course, Setting Permissions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:56:06+00:00\",\"dateModified\":\"2024-11-01T11:35:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37253\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37253\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37253\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Setting Permissions\"}]},{\"@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, Setting Permissions - \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\/37253\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Setting Permissions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"When developing an Android app, setting permissions is essential to use specific features or data. In this tutorial, we will learn in detail about the importance and methods of permission settings in Android app development using Java. 1. The Importance of Permissions Permissions are the rights that allow the app to access specific features. For &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Setting Permissions\"","og_url":"https:\/\/atmokpo.com\/w\/37253\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:56:06+00:00","article_modified_time":"2024-11-01T11:35: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\/37253\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37253\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Setting Permissions","datePublished":"2024-11-01T09:56:06+00:00","dateModified":"2024-11-01T11:35:59+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37253\/"},"wordCount":451,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37253\/","url":"https:\/\/atmokpo.com\/w\/37253\/","name":"Java Android App Development Course, Setting Permissions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:56:06+00:00","dateModified":"2024-11-01T11:35:59+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37253\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37253\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37253\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Setting Permissions"}]},{"@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\/37253","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=37253"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37253\/revisions"}],"predecessor-version":[{"id":37254,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37253\/revisions\/37254"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37253"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37253"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}