{"id":8105,"date":"2024-07-26T19:42:27","date_gmt":"2024-07-26T14:12:27","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8105"},"modified":"2024-07-26T19:42:29","modified_gmt":"2024-07-26T14:12:29","slug":"appium-automation-concepts","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/","title":{"rendered":"Appium Automation Concepts\u00a0"},"content":{"rendered":"\n<p><strong>What is Appium?<\/strong><\/p>\n\n\n\n<p>In simple terms, <strong>Appium<\/strong> is an open-source tool that allows you to automate mobile applications on platforms like iOS and Android. It enables developers and testers to write tests against mobile native, hybrid, and mobile web applications. So, if you\u2019re looking to automate your testing process, Appium is the go-to tool that can handle your mobile testing needs.<\/p>\n\n\n\n<p><strong>Importance of Appium in Automation Testing<\/strong><\/p>\n\n\n\n<p>The importance of Appium in automation can\u2019t be overstated. With the rise of mobile applications, the demand for effective testing solutions has skyrocketed. Appium bridges the gap by providing a unified framework that works across multiple platforms. Imagine not having to learn different tools for Android and iOS; that\u2019s the beauty of Appium!<\/p>\n\n\n\n<p><strong>Understanding Appium<\/strong><\/p>\n\n\n\n<p><strong>The Basics of Appium<\/strong><\/p>\n\n\n\n<p>At its core, Appium is essentially a server that runs in the background, which allows your test scripts to communicate with mobile devices. Think of it as a translator between your code and the mobile device, ensuring that your commands reach the right destination.<\/p>\n\n\n\n<p><strong>Supported Platforms<\/strong><\/p>\n\n\n\n<p>One of the coolest things about Appium is its versatility. It supports:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Android<\/strong><\/li>\n\n\n\n<li><strong>iOS<\/strong><\/li>\n\n\n\n<li><strong>Windows<\/strong> (via WinAppDriver)<\/li>\n<\/ul>\n\n\n\n<p>This means no matter what platform you&#8217;re testing on, Appium has got you covered!<\/p>\n\n\n\n<p><strong>Architecture of Appium<\/strong><\/p>\n\n\n\n<p>The architecture of Appium consists of three major components:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Appium Server:<\/strong> Acts as a mediator that receives commands from the client and sends them to the device.<\/li>\n\n\n\n<li><strong>Appium Client Libraries:<\/strong> Libraries that allow you to write tests in various programming languages like Java, Ruby, Python, and JavaScript.<\/li>\n\n\n\n<li><strong>Automation Engines:<\/strong> These are the tools specific to each platform (like UIAutomator for Android) that actually interact with the mobile app.<\/li>\n<\/ol>\n\n\n\n<p><strong>Core Concepts of Appium Automation<\/strong><\/p>\n\n\n\n<p><strong>Desired Capabilities<\/strong><\/p>\n\n\n\n<p>Before you start your tests, you need to configure the <strong>Desired Capabilities<\/strong>. These are a set of key-value pairs that comprise information about the device and app you\u2019re testing. Do you need to specify the platform version? Or maybe the device name? Desired capabilities have your back!<\/p>\n\n\n\n<p><strong>Appium Server<\/strong><\/p>\n\n\n\n<p>As mentioned, the <strong>Appium Server<\/strong> processes the interactions between your test scripts and the mobile device. You can start the server using various methods, like command-line or through the Appium desktop application. This server keeps your test environment running smoothly.<\/p>\n\n\n\n<p><strong>Appium Clients<\/strong><\/p>\n\n\n\n<p><strong>Appium Clients<\/strong> are the libraries you use to write your testing scripts. Depending on your programming language of choice, you\u2019d import the relevant client library to interact with Appium and communicate the test commands to the server.<\/p>\n\n\n\n<p><strong>Appium Installation and Setup<\/strong><\/p>\n\n\n\n<p><strong>System Requirements<\/strong><\/p>\n\n\n\n<p>Before diving into the installation process, ensure you have the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Java Development Kit (JDK)<\/li>\n\n\n\n<li>Node.js installed<\/li>\n\n\n\n<li>The latest version of Appium<\/li>\n<\/ul>\n\n\n\n<p><strong>Installing Appium on Different Platforms<\/strong><\/p>\n\n\n\n<p><strong>Windows<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install Node.js from the official website.<\/li>\n\n\n\n<li>Run the command npm install -g appium in your command prompt.<\/li>\n\n\n\n<li>Confirm installation by typing appium in the command prompt.<\/li>\n<\/ol>\n\n\n\n<p><strong>Mac<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Use Homebrew: brew install node.<\/li>\n\n\n\n<li>Then, run npm install -g appium.<\/li>\n<\/ol>\n\n\n\n<p><strong>Linux<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Generally, the same process as Mac: Install Node.js using your distribution&#8217;s package manager, then install Appium via npm.<\/li>\n<\/ol>\n\n\n\n<p><strong>Configuring Appium<\/strong><\/p>\n\n\n\n<p>Configuring Appium typically involves setting up your mobile devices and emulators along with ensuring that the desired capabilities are correctly set in your testing scripts. Make sure to also check the connection to your devices using ADB (Android Debug Bridge) or Xcode for iOS.<\/p>\n\n\n\n<p><strong>Writing Your First Test<\/strong><\/p>\n\n\n\n<p><strong>Setting Up the Testing Environment<\/strong><\/p>\n\n\n\n<p>To write tests in Appium, you\u2019ll want to set up a structured environment:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your IDE (like IntelliJ, Eclipse, etc.)<\/li>\n\n\n\n<li>The necessary Client libraries<\/li>\n\n\n\n<li>A real or virtual device to run your tests on.<\/li>\n<\/ul>\n\n\n\n<p><strong>Sample Test Script in Appium<\/strong><\/p>\n\n\n\n<p>Here\u2019s a quick sample script in Java to give you an idea:<\/p>\n\n\n\n<p>DesiredCapabilities capabilities = new DesiredCapabilities();<\/p>\n\n\n\n<p>capabilities.setCapability(&#8220;platformName&#8221;, &#8220;Android&#8221;);<\/p>\n\n\n\n<p>capabilities.setCapability(&#8220;deviceName&#8221;, &#8220;Emulator&#8221;);<\/p>\n\n\n\n<p>capabilities.setCapability(&#8220;app&#8221;, &#8220;&lt;path_to_your_app&gt;&#8221;);<\/p>\n\n\n\n<p>AppiumDriver&lt;MobileElement&gt; driver = new AppiumDriver&lt;&gt;(new URL(&#8220;http:\/\/localhost:4723\/wd\/hub&#8221;), capabilities);<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Appium? In simple terms, Appium is an open-source tool that allows you to automate mobile applications on platforms like iOS and Android. It enables developers and testers to write tests against mobile native, hybrid, and mobile web applications. So, if you\u2019re looking to automate your testing process, Appium&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Appium Automation Concepts\u00a0<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":504,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-8105","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"What is Appium? In simple terms, Appium is an open-source tool that allows you to automate mobile applications on platforms like iOS and Android. It enables developers and testers to write tests against mobile native, hybrid, and mobile web applications. So, if you\u2019re looking to automate your testing process, Appium&hellip; Continue Reading Appium Automation Concepts\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-26T14:12:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-26T14:12:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Susmitha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Susmitha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/\"},\"author\":{\"name\":\"Susmitha\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/80ad7d703b76a00a54241462f65a11ab\"},\"headline\":\"Appium Automation Concepts\u00a0\",\"datePublished\":\"2024-07-26T14:12:27+00:00\",\"dateModified\":\"2024-07-26T14:12:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/\"},\"wordCount\":655,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-07-26T14:12:27+00:00\",\"dateModified\":\"2024-07-26T14:12:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/appium-automation-concepts\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Appium Automation Concepts\u00a0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/80ad7d703b76a00a54241462f65a11ab\",\"name\":\"Susmitha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b852ad0580f1aad7a0cf324b31c2deb4b0144573481f7107285b37a8a3fc471d?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b852ad0580f1aad7a0cf324b31c2deb4b0144573481f7107285b37a8a3fc471d?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b852ad0580f1aad7a0cf324b31c2deb4b0144573481f7107285b37a8a3fc471d?s=96&r=g\",\"caption\":\"Susmitha\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/susmitha\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"What is Appium? In simple terms, Appium is an open-source tool that allows you to automate mobile applications on platforms like iOS and Android. It enables developers and testers to write tests against mobile native, hybrid, and mobile web applications. So, if you\u2019re looking to automate your testing process, Appium&hellip; Continue Reading Appium Automation Concepts\u00a0","og_url":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-07-26T14:12:27+00:00","article_modified_time":"2024-07-26T14:12:29+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Susmitha","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Susmitha","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/"},"author":{"name":"Susmitha","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/80ad7d703b76a00a54241462f65a11ab"},"headline":"Appium Automation Concepts\u00a0","datePublished":"2024-07-26T14:12:27+00:00","dateModified":"2024-07-26T14:12:29+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/"},"wordCount":655,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/","url":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2024-07-26T14:12:27+00:00","dateModified":"2024-07-26T14:12:29+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/appium-automation-concepts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Appium Automation Concepts\u00a0"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/80ad7d703b76a00a54241462f65a11ab","name":"Susmitha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b852ad0580f1aad7a0cf324b31c2deb4b0144573481f7107285b37a8a3fc471d?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b852ad0580f1aad7a0cf324b31c2deb4b0144573481f7107285b37a8a3fc471d?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b852ad0580f1aad7a0cf324b31c2deb4b0144573481f7107285b37a8a3fc471d?s=96&r=g","caption":"Susmitha"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/susmitha\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-26J","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/504"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8105"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8105\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8105"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8105"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}