{"id":32991,"date":"2024-11-01T09:12:58","date_gmt":"2024-11-01T09:12:58","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32991"},"modified":"2024-11-01T11:29:28","modified_gmt":"2024-11-01T11:29:28","slug":"spring-boot-backend-development-course-implementing-login-and-logout-with-jwt-adding-controllers","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32991\/","title":{"rendered":"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers"},"content":{"rendered":"<p><body><\/p>\n<h2>1. Introduction<\/h2>\n<p>\n        Security is one of the most important factors in modern web applications. User authentication and authorization are key functions in maintaining this security.<br \/>\n        In this course, we will take a detailed look at how to implement login and logout features using JWT (JSON Web Token) in backend development with Spring Boot.<br \/>\n        This course covers the process of setting up a basic Spring Boot application, implementing a JWT-based authentication system, and adding a controller to complete the RESTful API.\n    <\/p>\n<h2>2. What is Spring Boot?<\/h2>\n<p>\n        Spring Boot is a tool that makes it easier to use the Java-based framework Spring.<br \/>\n        This allows developers to minimize configuration and setup, enabling rapid application development.<br \/>\n        Spring Boot can be packaged into a standalone JAR file and can efficiently develop RESTful services.<br \/>\n        The main features of Spring Boot are as follows:\n    <\/p>\n<ul>\n<li><strong>Auto-configuration:<\/strong> Spring Boot automatically configures the basic settings needed by developers.<\/li>\n<li><strong>Starter packages:<\/strong> Developers can use starter packages to quickly add the functionality they need.<\/li>\n<li><strong>Embedded server:<\/strong> Spring Boot provides embedded servers such as Tomcat, Jetty, and Undertow, making it easy to run applications.<\/li>\n<li><strong>Dependency management:<\/strong> Dependencies can be easily managed within the source code using Maven or Gradle.<\/li>\n<\/ul>\n<h2>3. What is JWT?<\/h2>\n<p>\n        JWT (JSON Web Token) is an Internet standard RFC 7519 for secure information transmission. JWT uses a JSON object to encrypt and convey information such as subject (sub), issuer (iss), and expiration time (exp).<br \/>\n        JWT is composed of three parts:\n    <\/p>\n<ol>\n<li><strong>Header:<\/strong> Specifies the type of JWT and the signing algorithm used.<\/li>\n<li><strong>Payload:<\/strong> Contains the information to be transmitted and metadata describing that information.<\/li>\n<li><strong>Signature:<\/strong> Secures the header and payload to prevent tampering. It is created using a secret key.<\/li>\n<\/ol>\n<p>\n        JWT is widely used for API authentication in high-traffic environments. It is efficient as there is no need to store sessions on the server, and it allows the client to hold state information,<br \/>\n        reducing the load on the server.\n    <\/p>\n<h2>4. Project Setup<\/h2>\n<h3>4.1. Creating a Spring Boot Project<\/h3>\n<p>\n        We use <a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a> to create a Spring Boot project.<br \/>\n        Enter the necessary configurations as follows:\n    <\/p>\n<ul>\n<li><strong>Project:<\/strong> Maven Project<\/li>\n<li><strong>Language:<\/strong> Java<\/li>\n<li><strong>Spring Boot:<\/strong> 2.6.6 (latest version)<\/li>\n<li><strong>Project Metadata:<\/strong>\n<ul>\n<li>Group: com.example<\/li>\n<li>Artifact: jwt-demo<\/li>\n<li>Name: jwt-demo<\/li>\n<li>Description: JWT Authentication Demo<\/li>\n<li>Packaging: Jar<\/li>\n<li>Java: 11<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>\n        Then, add the following dependencies:\n    <\/p>\n<ul>\n<li>Spring Web<\/li>\n<li>Spring Security<\/li>\n<li>Spring Data JPA<\/li>\n<li>H2 Database<\/li>\n<li>jjwt (Java JWT)<\/li>\n<\/ul>\n<h3>4.2. Project Structure<\/h3>\n<p>\n        After creating the project, the basic package structure will be as follows:\n    <\/p>\n<pre>\n    \u2514\u2500\u2500 src\n        \u2514\u2500\u2500 main\n            \u251c\u2500\u2500 java\n            \u2502   \u2514\u2500\u2500 com\n            \u2502       \u2514\u2500\u2500 example\n            \u2502           \u2514\u2500\u2500 jwt_demo\n            \u2502               \u251c\u2500\u2500 JwtDemoApplication.java\n            \u2502               \u251c\u2500\u2500 controller\n            \u2502               \u251c\u2500\u2500 model\n            \u2502               \u251c\u2500\u2500 repository\n            \u2502               \u251c\u2500\u2500 security\n            \u2502               \u2514\u2500\u2500 service\n            \u2514\u2500\u2500 resources\n                \u251c\u2500\u2500 application.properties\n                \u2514\u2500\u2500 static\n    <\/pre>\n<h2>5. Database Configuration<\/h2>\n<p>\n        We can use the H2 database to store user information.<br \/>\n        Configure the application.properties file as follows:\n    <\/p>\n<pre>\n    spring.h2.console.enabled=true\n    spring.datasource.url=jdbc:h2:mem:testdb\n    spring.datasource.driverClassName=org.h2.Driver\n    spring.datasource.username=sa\n    spring.datasource.password=\n    spring.jpa.database-platform=org.hibernate.dialect.H2Dialect\n    <\/pre>\n<h2>6. Creating a User Model<\/h2>\n<p>\n        We create a User model class to hold user information.\n    <\/p>\n<pre>\n    package com.example.jwt_demo.model;\n\n    import javax.persistence.*;\n\n    @Entity\n    @Table(name = \"users\")\n    public class User {\n        @Id\n        @GeneratedValue(strategy = GenerationType.IDENTITY)\n        private Long id;\n\n        @Column(nullable = false, unique = true)\n        private String username;\n\n        @Column(nullable = false)\n        private String password;\n\n        \/\/ Getters and Setters...\n\n        public User() {}\n\n        public User(String username, String password) {\n            this.username = username;\n            this.password = password;\n        }\n    }\n    <\/pre>\n<h2>7. Creating a User Repository<\/h2>\n<p>\n        We create a JPA repository interface to manage user information in the database.\n    <\/p>\n<pre>\n    package com.example.jwt_demo.repository;\n\n    import com.example.jwt_demo.model.User;\n    import org.springframework.data.jpa.repository.JpaRepository;\n    import org.springframework.stereotype.Repository;\n\n    @Repository\n    public interface UserRepository extends JpaRepository<User, Long> {\n        User findByUsername(String username);\n    }\n    <\/pre>\n<h2>8. Security Configuration<\/h2>\n<p>\n        We will implement JWT authentication through Spring Security. To do this, we create a SecurityConfig class that extends WebSecurityConfigurerAdapter.\n    <\/p>\n<pre>\n    package com.example.jwt_demo.security;\n\n    import com.example.jwt_demo.filter.JwtRequestFilter;\n    import com.example.jwt_demo.service.UserDetailsServiceImpl;\n    import org.springframework.beans.factory.annotation.Autowired;\n    import org.springframework.context.annotation.Bean;\n    import org.springframework.security.authentication.AuthenticationManager;\n    import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;\n    import org.springframework.security.config.annotation.web.builders.HttpSecurity;\n    import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;\n    import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;\n    import org.springframework.security.config.http.SessionCreationPolicy;\n    import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;\n\n    @EnableWebSecurity\n    public class SecurityConfig extends WebSecurityConfigurerAdapter {\n\n        @Autowired\n        private UserDetailsServiceImpl userDetailsService;\n\n        @Autowired\n        private JwtRequestFilter jwtRequestFilter;\n\n        @Override\n        protected void configure(AuthenticationManagerBuilder auth) throws Exception {\n            auth.userDetailsService(userDetailsService);\n        }\n\n        @Override\n        protected void configure(HttpSecurity http) throws Exception {\n            http.csrf().disable()\n                .authorizeRequests()\n                .antMatchers(\"\/authenticate\").permitAll()\n                .anyRequest().\n<\/pre>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction Security is one of the most important factors in modern web applications. User authentication and authorization are key functions in maintaining this security. In this course, we will take a detailed look at how to implement login and logout features using JWT (JSON Web Token) in backend development with Spring Boot. This course &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32991\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers&#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":[131],"tags":[],"class_list":["post-32991","post","type-post","status-publish","format-standard","hentry","category-spring-boot-backend-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers - \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\/32991\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction Security is one of the most important factors in modern web applications. User authentication and authorization are key functions in maintaining this security. In this course, we will take a detailed look at how to implement login and logout features using JWT (JSON Web Token) in backend development with Spring Boot. This course &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32991\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:12:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:29:28+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\/32991\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32991\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers\",\"datePublished\":\"2024-11-01T09:12:58+00:00\",\"dateModified\":\"2024-11-01T11:29:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32991\/\"},\"wordCount\":477,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32991\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32991\/\",\"name\":\"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:12:58+00:00\",\"dateModified\":\"2024-11-01T11:29:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32991\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32991\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32991\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers\"}]},{\"@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":"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers - \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\/32991\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction Security is one of the most important factors in modern web applications. User authentication and authorization are key functions in maintaining this security. In this course, we will take a detailed look at how to implement login and logout features using JWT (JSON Web Token) in backend development with Spring Boot. This course &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers\"","og_url":"https:\/\/atmokpo.com\/w\/32991\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:12:58+00:00","article_modified_time":"2024-11-01T11:29:28+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\/32991\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32991\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers","datePublished":"2024-11-01T09:12:58+00:00","dateModified":"2024-11-01T11:29:28+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32991\/"},"wordCount":477,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32991\/","url":"https:\/\/atmokpo.com\/w\/32991\/","name":"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:12:58+00:00","dateModified":"2024-11-01T11:29:28+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32991\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32991\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32991\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Implementing Login and Logout with JWT, Adding Controllers"}]},{"@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\/32991","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=32991"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32991\/revisions"}],"predecessor-version":[{"id":32992,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32991\/revisions\/32992"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32991"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32991"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32991"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}