{"id":7089,"date":"2025-04-18T11:41:31","date_gmt":"2025-04-18T03:41:31","guid":{"rendered":"https:\/\/www.dccochina.com\/?p=7089"},"modified":"2025-09-28T09:29:58","modified_gmt":"2025-09-28T01:29:58","slug":"getting-started-with-java-card-sdk-tools-setup-and-first-applet","status":"publish","type":"post","link":"https:\/\/www.dccochina.com\/es\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/","title":{"rendered":"Getting Started with Java Card SDK: Tools, Setup, and First Applet"},"content":{"rendered":"<p>The Java Card SDK is a comprehensive toolkit for developers building secure and flexible card applications in fields such as identity verification, mobile communications, and payment systems. More than just a collection of libraries, it includes specifications, APIS, and emulation tools that simulate intelligent card behaviour on a desktop, making development, testing, and debugging much faster. With the proper setup and some basic Java knowledge, developers can quickly start building and deploying applets on both real and virtual smart card devices.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setting Up Your Development Environment<\/h2>\n\n\n\n<p>A stable development environment is key to successful Java Card SDK usage. Most developers prefer to use a Java IDE, such as Eclipse or IntelliJ IDEA, both of which support standard Java syntax and debugging features. Additionally, you&#8217;ll need the JDK (Java Development Kit), typically version 8 or later, and the Java Card SDK package.<\/p>\n\n\n\n<p>Installation is straightforward. Extract the contents to a known location after downloading the SDK from Oracle or another provider. Then, configure your IDE to recognize the SDK&#8217;s libraries. Often, this step includes linking .jar files and setting up environment variables to point to the Java Card tools. These minor configuration tweaks are essential for the Java Cards compiler and CAP file generator to work seamlessly.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/02\/image-22-1024x682.png\" alt=\"Java card applet platform\" class=\"wp-image-6523\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Exploring the Java Card Development Tools<\/h3>\n\n\n\n<p>The SDK comes packed with several utilities, notably a converter, verifier, and tool. The converter compiles Java classes into CAP (Converted Applet) files, which are deployable to <a href=\"https:\/\/www.dccochina.com\/product\/java-card\/\">Java Cards<\/a>. The verifier ensures that bytecode is correct and compliant with the Java Card specification. The tool simulates communication between the card and host application using APDU (Application Protocol Data Unit) commands.<\/p>\n\n\n\n<p>These tools make the SDK a one-stop solution for development and testing. With them, developers can avoid the complexity of writing low-level code and instead focus on business logic. Knowing when and how to use each tool improves workflow efficiency and code quality. Once set up correctly, these tools are intuitive, even for newcomers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Writing Your First Java Card Applet<\/h3>\n\n\n\n<p>Creating your first applet is where theory meets practice. Start by extending the Java Card framework&#8217;s Applet class. Then, implement the required methods, such as install() and process(). The install() method registers the applet instance, while process() handles incoming APDU commands. These two methods form the core of any Java Card application.<\/p>\n\n\n\n<p>Your applet should be compiled using the converter tool, which generates a CAP file. The tool loads this file onto the card (or simulator). By sending specific APDU commands, you can interact with the applet and validate its functionality. Each interaction teaches more about data handling and smart card architecture.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"600\" height=\"400\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-42.png\" alt=\"Java Programming\" class=\"wp-image-6274\" style=\"width:840px;height:auto\" srcset=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-42.png 600w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-42-300x200.png 300w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-42-18x12.png 18w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Understanding APDU Communication<\/h3>\n\n\n\n<p>APDUS are the communication backbone of Java Card apps. Each APDU consists of a command and optional data, which the applet must parse and respond to appropriately. Understanding APDU structure\u2014especially fields like CLA, INS, P1, P2, LC, and LE\u2014is crucial to creating effective smart card interactions.<\/p>\n\n\n\n<p>Developers often use the tool to send custom APDU scripts to their applets. This simulation mimics real-world scenarios, such as PIN verification or data retrieval. Mastering APDU flow improves your applet&#8217;s robustness and ensures compatibility with existing systems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Testing and Debugging Strategies<\/h3>\n\n\n\n<p>Testing is integral to any <a href=\"https:\/\/www.thalesgroup.com\/en\/markets\/digital-identity-and-security\/technology\/javacard\">Java Card SDK<\/a> project. Thankfully, the SDK includes simulation tools that mimic real card behaviour. This eliminates the need for constant hardware access during development. Simulators can detect memory issues, runtime exceptions, and logical flaws without risking physical cards.<\/p>\n\n\n\n<p>Debugging is best done using verbose logs and breakpoints inside your IDE. Many developers also use custom logging inside applets to track state changes. With frequent testing and disciplined debugging, developers can avoid costly mistakes and optimise performance.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"600\" height=\"401\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/02\/image-23.png\" alt=\"java cards\" class=\"wp-image-6524\" style=\"width:840px;height:auto\" srcset=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/02\/image-23.png 600w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/02\/image-23-300x201.png 300w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/02\/image-23-18x12.png 18w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Security Considerations in Java Card Development<\/h4>\n\n\n\n<p>Java Card applications often handle sensitive data, so security is a top priority. To prevent attacks, use secure data handling practices\u2014such as buffer overwrites and input validation\u2014to restrict applet access using ACLs (Access Control Lists) and encrypt communications where feasible.<\/p>\n\n\n\n<p>The Java Card SDK supports various cryptographic libraries, making it easier to implement RSA, AES, and SHA algorithms. Leveraging these features strengthens your app&#8217;s trustworthiness. Regular code reviews and penetration tests are also recommended in high-stakes deployments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts on Java Card SDK and Beyond<\/h2>\n\n\n\n<p>The Java Card SDK empowers developers to create robust, secure, and efficient smart card solutions. From tool setup to first applet deployment, each step builds foundational skills. Although the learning curve may seem steep initially, consistent practice and effective use of SDK tools will quickly flatten it <\/p>\n\n\n\n<p>With the evolving needs of digital security and embedded applications, mastering the Java Cards SDK opens doors to diverse opportunities. Whether you aim to build financial products, authentication systems, or encrypted IDS, this SDK provides the control and reliability required in modern secure technology.<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>The Java Card SDK is a comprehensive toolkit for developers building secure and flexible card applications in fields such as identity verification, mobile communications, and payment systems. More than just a collection of libraries, it includes specifications, APIS, and emulation tools that simulate intelligent card behaviour on a desktop, making development, testing, and debugging much [&hellip;]<\/p>","protected":false},"author":1,"featured_media":6220,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[58],"tags":[194],"class_list":["post-7089","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-article","tag-java-card"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Getting Started with Java Card SDK: Tools, Setup, and First Applet - Dcco<\/title>\n<meta name=\"description\" content=\"Discover how to set up Java Card SDK, create your first applet, and develop secure, efficient smart card applications.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dccochina.com\/es\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting Started with Java Card SDK: Tools, Setup, and First Applet - Dcco\" \/>\n<meta property=\"og:description\" content=\"Discover how to set up Java Card SDK, create your first applet, and develop secure, efficient smart card applications.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dccochina.com\/es\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\" \/>\n<meta property=\"og:site_name\" content=\"Dcco\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-18T03:41:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-28T01:29:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"ch123@\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ch123@\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\"},\"author\":{\"name\":\"ch123@\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac\"},\"headline\":\"Getting Started with Java Card SDK: Tools, Setup, and First Applet\",\"datePublished\":\"2025-04-18T03:41:31+00:00\",\"dateModified\":\"2025-09-28T01:29:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\"},\"wordCount\":803,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.dccochina.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png\",\"keywords\":[\"Java Card\"],\"articleSection\":[\"Article\"],\"inLanguage\":\"es-ES\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\",\"url\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\",\"name\":\"Getting Started with Java Card SDK: Tools, Setup, and First Applet - Dcco\",\"isPartOf\":{\"@id\":\"https:\/\/www.dccochina.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png\",\"datePublished\":\"2025-04-18T03:41:31+00:00\",\"dateModified\":\"2025-09-28T01:29:58+00:00\",\"description\":\"Discover how to set up Java Card SDK, create your first applet, and develop secure, efficient smart card applications.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#breadcrumb\"},\"inLanguage\":\"es-ES\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage\",\"url\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png\",\"contentUrl\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png\",\"width\":600,\"height\":400,\"caption\":\"Java card\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.dccochina.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with Java Card SDK: Tools, Setup, and First Applet\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dccochina.com\/#website\",\"url\":\"https:\/\/www.dccochina.com\/\",\"name\":\"Dcco\",\"description\":\"dccochina\",\"publisher\":{\"@id\":\"https:\/\/www.dccochina.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dccochina.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es-ES\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.dccochina.com\/#organization\",\"name\":\"Dcco\",\"url\":\"https:\/\/www.dccochina.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Dcco\"},\"image\":{\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac\",\"name\":\"ch123@\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g\",\"caption\":\"ch123@\"},\"sameAs\":[\"http:\/\/demo.lezhan.org\"],\"url\":\"https:\/\/www.dccochina.com\/es\/author\/ch123\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting Started with Java Card SDK: Tools, Setup, and First Applet - Dcco","description":"Discover how to set up Java Card SDK, create your first applet, and develop secure, efficient smart card applications.","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:\/\/www.dccochina.com\/es\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/","og_locale":"es_ES","og_type":"article","og_title":"Getting Started with Java Card SDK: Tools, Setup, and First Applet - Dcco","og_description":"Discover how to set up Java Card SDK, create your first applet, and develop secure, efficient smart card applications.","og_url":"https:\/\/www.dccochina.com\/es\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/","og_site_name":"Dcco","article_published_time":"2025-04-18T03:41:31+00:00","article_modified_time":"2025-09-28T01:29:58+00:00","og_image":[{"width":600,"height":400,"url":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png","type":"image\/png"}],"author":"ch123@","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ch123@","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#article","isPartOf":{"@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/"},"author":{"name":"ch123@","@id":"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac"},"headline":"Getting Started with Java Card SDK: Tools, Setup, and First Applet","datePublished":"2025-04-18T03:41:31+00:00","dateModified":"2025-09-28T01:29:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/"},"wordCount":803,"commentCount":0,"publisher":{"@id":"https:\/\/www.dccochina.com\/#organization"},"image":{"@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png","keywords":["Java Card"],"articleSection":["Article"],"inLanguage":"es-ES","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/","url":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/","name":"Getting Started with Java Card SDK: Tools, Setup, and First Applet - Dcco","isPartOf":{"@id":"https:\/\/www.dccochina.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage"},"image":{"@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png","datePublished":"2025-04-18T03:41:31+00:00","dateModified":"2025-09-28T01:29:58+00:00","description":"Discover how to set up Java Card SDK, create your first applet, and develop secure, efficient smart card applications.","breadcrumb":{"@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#breadcrumb"},"inLanguage":"es-ES","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/"]}]},{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#primaryimage","url":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png","contentUrl":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png","width":600,"height":400,"caption":"Java card"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dccochina.com\/getting-started-with-java-card-sdk-tools-setup-and-first-applet\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dccochina.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started with Java Card SDK: Tools, Setup, and First Applet"}]},{"@type":"WebSite","@id":"https:\/\/www.dccochina.com\/#website","url":"https:\/\/www.dccochina.com\/","name":"Dcco","description":"dccochina","publisher":{"@id":"https:\/\/www.dccochina.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dccochina.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"es-ES"},{"@type":"Organization","@id":"https:\/\/www.dccochina.com\/#organization","name":"Dcco","url":"https:\/\/www.dccochina.com\/","logo":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/","url":"","contentUrl":"","caption":"Dcco"},"image":{"@id":"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac","name":"ch123@","image":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/www.dccochina.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g","caption":"ch123@"},"sameAs":["http:\/\/demo.lezhan.org"],"url":"https:\/\/www.dccochina.com\/es\/author\/ch123\/"}]}},"jetpack_featured_media_url":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-8.png","_links":{"self":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts\/7089","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/comments?post=7089"}],"version-history":[{"count":3,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts\/7089\/revisions"}],"predecessor-version":[{"id":8711,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts\/7089\/revisions\/8711"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/media\/6220"}],"wp:attachment":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/media?parent=7089"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/categories?post=7089"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/tags?post=7089"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}