{"id":37169,"date":"2024-11-01T09:55:27","date_gmt":"2024-11-01T09:55:27","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37169"},"modified":"2024-11-01T11:36:22","modified_gmt":"2024-11-01T11:36:22","slug":"java-android-app-development-course-integrating-with-basic-android-apps","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37169\/","title":{"rendered":"Java Android App Development Course, Integrating with Basic Android Apps"},"content":{"rendered":"<p><body><\/p>\n<article>\n<section>\n<h2>1. Introduction<\/h2>\n<p>\n                In today&#8217;s mobile environment, the Android platform is one of the most widely used operating systems. In particular, using the Java language to develop apps is a familiar approach for many developers. In this course, we will start from the basics of app development through integration with basic Android apps and take it a step further to implement various features. Through this course, you will understand the interaction between Android apps and basic apps (e.g., contacts, camera, etc.) and develop the ability to implement them yourself.\n            <\/p>\n<\/section>\n<section>\n<h2>2. Setting Up the Android App Development Environment<\/h2>\n<p>\n                To develop Android apps, you first need to set up the development environment. Using Android Studio provides many convenient tools and features. Below are the installation steps for Android Studio.\n            <\/p>\n<ol>\n<li>Download Android Studio: Download from the <a href=\"https:\/\/developer.android.com\/studio\">official Google site<\/a>.<\/li>\n<li>Installation: Follow the installation wizard.<\/li>\n<li>SDK Installation: The necessary SDKs and tools will be installed automatically.<\/li>\n<li>Creating a Project: Click on &#8216;New Project&#8217; to create a new Android project.<\/li>\n<\/ol>\n<\/section>\n<section>\n<h2>3. Understanding Android Basic Apps<\/h2>\n<p>\n                Android has several types of basic apps. These apps provide functionalities that developers can easily use without the need for external libraries. For example, there are contacts apps, camera apps, maps apps, etc. In this section, we will use an example connected to the contacts app to explore the functionalities of basic apps.\n            <\/p>\n<\/section>\n<section>\n<h2>4. Integrating with the Contacts App<\/h2>\n<p>\n                We will implement a feature that retrieves contact information by integrating with the contacts app. The following are the steps to implement this feature.\n            <\/p>\n<h3>4.1. Requesting Permissions<\/h3>\n<p>\n                To access the contacts, you need to request permission from the user. Add the following permission to the AndroidManifest.xml file.\n            <\/p>\n<pre>\n                <code>\n                &lt;uses-permission android:name=\"android.permission.READ_CONTACTS\" \/&gt;\n                <\/code>\n            <\/pre>\n<h3>4.2. Retrieving Contact Information<\/h3>\n<p>\n                Now, open the MainActivity.java file and write the code to retrieve contact information.\n            <\/p>\n<pre>\n                <code>\n                import android.Manifest;\n                import android.content.ContentResolver;\n                import android.content.pm.PackageManager;\n                import android.database.Cursor;\n                import android.net.Uri;\n                import android.os.Bundle;\n                import android.provider.ContactsContract;\n                import android.view.View;\n                import android.widget.Button;\n                import android.widget.TextView;\n                import androidx.annotation.NonNull;\n                import androidx.appcompat.app.AppCompatActivity;\n                import androidx.core.app.ActivityCompat;\n\n                public class MainActivity extends AppCompatActivity {\n                    private static final int REQUEST_CODE_CONTACT = 1;\n                    private TextView textView;\n\n                    @Override\n                    protected void onCreate(Bundle savedInstanceState) {\n                        super.onCreate(savedInstanceState);\n                        setContentView(R.layout.activity_main);\n                        \n                        textView = findViewById(R.id.textView);\n                        Button button = findViewById(R.id.button);\n                        \n                        button.setOnClickListener(new View.OnClickListener() {\n                            @Override\n                            public void onClick(View view) {\n                                checkPermission();\n                            }\n                        });\n                    }\n\n                    private void checkPermission() {\n                        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {\n                            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_CONTACTS}, REQUEST_CODE_CONTACT);\n                        } else {\n                            getContacts();\n                        }\n                    }\n\n                    private void getContacts() {\n                        ContentResolver resolver = getContentResolver();\n                        Uri uri = ContactsContract.Contacts.CONTENT_URI;\n                        Cursor cursor = resolver.query(uri, null, null, null, null);\n                        \n                        StringBuilder contactsList = new StringBuilder();\n                        \n                        while (cursor.moveToNext()) {\n                            String name = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));\n                            contactsList.append(name).append(\"\\n\");\n                        }\n                        cursor.close();\n                        textView.setText(contactsList.toString());\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 == REQUEST_CODE_CONTACT && grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {\n                            getContacts();\n                        }\n                    }\n                }\n                <\/code>\n            <\/pre>\n<h3>4.3. Building the UI<\/h3>\n<p>\n                Open the activity_main.xml file and build the UI. You will add a Button and a TextView by default.\n            <\/p>\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\"&gt;\n                    &lt;Button\n                        android:id=\"@+id\/button\"\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:text=\"Get Contacts\" \/&gt;\n\n                    &lt;TextView\n                        android:id=\"@+id\/textView\"\n                        android:layout_width=\"match_parent\"\n                        android:layout_height=\"wrap_content\" \/&gt;\n                &lt;\/LinearLayout&gt;\n                <\/code>\n            <\/pre>\n<h3>4.4. Running the App<\/h3>\n<p>\n                Now, run the project. When you click the &#8216;Get Contacts&#8217; button, the list of contacts will be displayed in the TextView. If a permission request dialog appears, you must click allow to retrieve contact information.\n            <\/p>\n<\/section>\n<section>\n<h2>5. Integrating with the Camera App<\/h2>\n<p>\n                Next, we will implement a feature to take a photo by integrating with the camera app. Integrating with the camera is also a great example of integration between basic apps.\n            <\/p>\n<h3>5.1. Requesting Permissions<\/h3>\n<p>\n                The method for requesting permissions to access the camera is similar to that of the contacts app. Add the following to the AndroidManifest.xml.\n            <\/p>\n<pre>\n                <code>\n                &lt;uses-permission android:name=\"android.permission.CAMERA\" \/&gt;\n                &lt;uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\" \/&gt;\n                <\/code>\n            <\/pre>\n<h3>5.2. Taking a Photo<\/h3>\n<p>\n                Add the function for taking a photo in the MainActivity.java file.\n            <\/p>\n<pre>\n                <code>\n                import android.content.Intent;\n                import android.graphics.Bitmap;\n                import android.net.Uri;\n                import android.os.Bundle;\n                import android.provider.MediaStore;\n                import android.widget.Button;\n                import android.widget.ImageView;\n                import androidx.appcompat.app.AppCompatActivity;\n\n                public class MainActivity extends AppCompatActivity {\n                    private static final int REQUEST_IMAGE_CAPTURE = 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                        Button button = findViewById(R.id.button);\n                        imageView = findViewById(R.id.imageView);\n                        \n                        button.setOnClickListener(view -&gt; {\n                            Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);\n                            if (takePictureIntent.resolveActivity(getPackageManager()) != null) {\n                                startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);\n                            }\n                        });\n                    }\n\n                    @Override\n                    protected void onActivityResult(int requestCode, int resultCode, Intent data) {\n                        super.onActivityResult(requestCode, resultCode, data);\n                        if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {\n                            Bundle extras = data.getExtras();\n                            Bitmap imageBitmap = (Bitmap) extras.get(\"data\");\n                            imageView.setImageBitmap(imageBitmap);\n                        }\n                    }\n                }\n                <\/code>\n            <\/pre>\n<h3>5.3. Building the UI<\/h3>\n<p>\n                Add an ImageView in the activity_main.xml file to display the captured photo.\n            <\/p>\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\"&gt;\n                    &lt;Button\n                        android:id=\"@+id\/button\"\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:text=\"Take Photo\" \/&gt;\n\n                    &lt;ImageView\n                        android:id=\"@+id\/imageView\"\n                        android:layout_width=\"match_parent\"\n                        android:layout_height=\"match_parent\" \/&gt;\n                &lt;\/LinearLayout&gt;\n                <\/code>\n            <\/pre>\n<h3>5.4. Running the App<\/h3>\n<p>\n                Now run the program and click the &#8216;Take Photo&#8217; button. If it works correctly, the camera will launch, and after taking the photo, the result will be displayed in the image view.\n            <\/p>\n<\/section>\n<section>\n<h2>6. Conclusion<\/h2>\n<p>\n                In this course, we learned how to integrate with basic Android apps using Java. Through the integration of contacts and camera apps, we explored how to utilize the functionalities of basic apps in app development. Based on this example, you can expand your own app functionalities and try various forms of integration. Continue to learn and practice Android app development to further your skills!\n            <\/p>\n<\/section>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction In today&#8217;s mobile environment, the Android platform is one of the most widely used operating systems. In particular, using the Java language to develop apps is a familiar approach for many developers. In this course, we will start from the basics of app development through integration with basic Android apps and take it &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37169\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Integrating with Basic Android Apps&#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-37169","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, Integrating with Basic Android Apps - \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\/37169\/\" \/>\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, Integrating with Basic Android Apps - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction In today&#8217;s mobile environment, the Android platform is one of the most widely used operating systems. In particular, using the Java language to develop apps is a familiar approach for many developers. In this course, we will start from the basics of app development through integration with basic Android apps and take it &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Integrating with Basic Android Apps&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37169\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:22+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37169\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37169\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Integrating with Basic Android Apps\",\"datePublished\":\"2024-11-01T09:55:27+00:00\",\"dateModified\":\"2024-11-01T11:36:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37169\/\"},\"wordCount\":554,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37169\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37169\/\",\"name\":\"Java Android App Development Course, Integrating with Basic Android Apps - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:27+00:00\",\"dateModified\":\"2024-11-01T11:36:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37169\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37169\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37169\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Integrating with Basic Android Apps\"}]},{\"@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, Integrating with Basic Android Apps - \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\/37169\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Integrating with Basic Android Apps - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction In today&#8217;s mobile environment, the Android platform is one of the most widely used operating systems. In particular, using the Java language to develop apps is a familiar approach for many developers. In this course, we will start from the basics of app development through integration with basic Android apps and take it &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Integrating with Basic Android Apps\"","og_url":"https:\/\/atmokpo.com\/w\/37169\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:27+00:00","article_modified_time":"2024-11-01T11:36:22+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37169\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37169\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Integrating with Basic Android Apps","datePublished":"2024-11-01T09:55:27+00:00","dateModified":"2024-11-01T11:36:22+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37169\/"},"wordCount":554,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37169\/","url":"https:\/\/atmokpo.com\/w\/37169\/","name":"Java Android App Development Course, Integrating with Basic Android Apps - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:27+00:00","dateModified":"2024-11-01T11:36:22+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37169\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37169\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37169\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Integrating with Basic Android Apps"}]},{"@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\/37169","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=37169"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37169\/revisions"}],"predecessor-version":[{"id":37170,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37169\/revisions\/37170"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37169"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37169"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37169"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}