{"id":952,"date":"2024-10-28T22:54:21","date_gmt":"2024-10-28T22:54:21","guid":{"rendered":"https:\/\/www.bleuio.com\/blog\/?p=952"},"modified":"2024-10-28T22:59:40","modified_gmt":"2024-10-28T22:59:40","slug":"ble-connectivity-test-tool-using-bleuio","status":"publish","type":"post","link":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/","title":{"rendered":"BLE Connectivity Test Tool using BleuIO"},"content":{"rendered":"\n<p>This article takes a deep dive into the capabilities of BleuIO, exploring how it can <strong>simplify BLE application testing<\/strong>, especially in complex environments like IoT, health, automotive, and smart home applications. Whether you are a seasoned developer or a newcomer, <a href=\"https:\/\/www.bleuio.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">BleuIO<\/a> provides a reliable, versatile tool to jumpstart your BLE projects. We\u2019ll also cover an example project, the <strong>BLE Connectivity Test Tool<\/strong>, to illustrate BleuIO\u2019s ease of use and the possibilities it opens up for developers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example Project: Building a BLE Connectivity Test Tool<\/h3>\n\n\n\n<p>To demonstrate the practicality and ease of using BleuIO, let\u2019s look at a sample project: a BLE Connectivity Test Tool. This tool allows developers to <strong>test the connection stability of a BLE device<\/strong>, such as the <strong><a href=\"https:\/\/www.hibouair.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">HibouAir air quality monitor<\/a><\/strong>, by performing repeated connection and disconnection attempts. This example showcases how easy it is to set up a real-world testing scenario with BleuIO, perfect for those looking to explore connectivity applications.<\/p>\n\n\n\n<p><strong>This BLE Connectivity Test Tool will:<\/strong><\/p>\n\n\n\n<p><strong>Scan for the HibouAir Device<\/strong>: Use BleuIO to locate the device based on its BLE address.<\/p>\n\n\n\n<p><strong>Initiate Connections<\/strong>: Repeatedly connect and disconnect from the HibouAir device, tracking the success and failure of each attempt.<\/p>\n\n\n\n<p><strong>Log Results<\/strong>: Display a summary at the end, indicating successful connections and any errors encountered.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Code Overview<\/h3>\n\n\n\n<p>The Python script below uses the official <strong><a href=\"https:\/\/pypi.org\/project\/bleuio\/\" target=\"_blank\" rel=\"noreferrer noopener\">BleuIO Python library<\/a><\/strong>, which simplifies interaction with BLE devices. It uses AT commands to set the dongle in central mode, initiate connections, and disconnect after a set duration.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import time\nfrom datetime import datetime\nfrom bleuio_lib.bleuio_funcs import BleuIO\n\n# Initialize the BleuIO dongle\ndongle = BleuIO()\n\n# Device address of HibouAir (replace with your actual address if different)\ndevice_address = \"&#91;1]D1:79:29:DB:CB:CC\"\n\n# Number of connection attempts\ntest_count = 5\n# Duration to stay connected in seconds\nconnect_duration = 2\n# Delay between connection attempts\ndelay_between_tests = 5\n\n# Counters for tracking connection results\nsuccessful_connections = 0\nsuccessful_disconnections = 0\nconnection_failures = 0\n\n# Register scan callback to handle scanned device responses\ndef my_scan_callback(scan_input):\n    print(\"\\n\\nScan Result: \" + str(scan_input))\n\n# Register event callback to handle connection events with timestamps\ndef my_evt_callback(evt_input):\n    cbTime = datetime.now()\n    currentTime = cbTime.strftime(\"%H:%M:%S\")\n    print(\"\\n\\n&#91;\" + str(currentTime) + \"] Event: \" + str(evt_input))\n\n# Set up the callback functions\ndongle.register_evt_cb(my_evt_callback)\ndongle.register_scan_cb(my_scan_callback)\n\n# Set the BLE role to central to initiate connections\ndongle.at_central()\n\n# Start the connection test\nprint(\"Starting BLE Connectivity Test with HibouAir device...\\n\")\nfor i in range(test_count):\n    print(f\"\\nAttempt {i+1}\/{test_count}\")\n    \n    # Connect to the device\n    connect_response = dongle.at_gapconnect(device_address)\n    if connect_response.Ack.get(\"err\") == 0:  # Check if the connection was successful\n        print(\"Connection successful!\")\n        successful_connections += 1\n        time.sleep(connect_duration)  # Stay connected for the specified duration\n\n        # Disconnect\n        disconnect_response = dongle.at_gapdisconnect()\n        if disconnect_response.Ack.get(\"err\") == 0:\n            print(\"Disconnected successfully.\")\n            successful_disconnections += 1\n        else:\n            print(\"Error during disconnect:\", disconnect_response.Ack.get(\"errMsg\"))\n            connection_failures += 1\n    else:\n        print(\"Connection failed:\", connect_response.Ack.get(\"errMsg\"))\n        connection_failures += 1\n    \n    # Wait before the next attempt\n    time.sleep(delay_between_tests)\n\n\n\n# Display test results summary\nprint(\"\\nConnectivity Test Summary:\")\nprint(f\"Total Connection Attempts: {test_count}\")\nprint(f\"Successful Connections: {successful_connections}\")\nprint(f\"Successful Disconnections: {successful_disconnections}\")\nprint(f\"Failures: {connection_failures}\")\n<\/code><\/pre>\n\n\n\n<p>This tool\u2019s simplicity shows how BleuIO can be used in the development and testing process, making it a preferred choice for developers who want to avoid BLE\u2019s traditional complexities.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Output<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"712\" height=\"200\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/image.png\" alt=\"\" class=\"wp-image-954\" style=\"width:435px;height:auto\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/image.png 712w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/image-300x84.png 300w\" sizes=\"auto, (max-width: 712px) 100vw, 712px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Real-World Applications of BleuIO<\/h3>\n\n\n\n<p><strong>IoT Device Testing<\/strong>: From smart home devices to industrial sensors, BleuIO is invaluable for testing the connectivity and data transmission of IoT devices.<\/p>\n\n\n\n<p><strong>Wearable Tech Development<\/strong>: For developers working on BLE-enabled wearables like fitness trackers or health monitors, BleuIO provides a straightforward way to test device connectivity.<\/p>\n\n\n\n<p><strong>Educational and Prototyping Tool<\/strong>: BleuIO\u2019s ease of use makes it an excellent educational tool for introducing BLE concepts to students and rapid prototyping for startups.<\/p>\n\n\n\n<p><strong>Environmental Monitoring<\/strong>: As demonstrated with the <strong>HibouAir air quality monitor<\/strong>, BleuIO facilitates connectivity testing in applications involving environmental data, like CO2 monitoring, temperature, and humidity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why BleuIO for BLE Development?<\/h3>\n\n\n\n<p>Developing BLE applications often requires specialized hardware and software expertise. Traditional BLE development involves understanding intricate details of Bluetooth stacks, profiles, and data protocols. BleuIO alleviates this by offering a straightforward command structure that abstracts the technical details, allowing developers to quickly build and test applications.<\/p>\n\n\n\n<p>In addition, BleuIO\u2019s compact design makes it suitable for portable applications and rapid prototyping. From sensor connectivity to device tracking and monitoring, BleuIO proves to be a versatile asset for a range of BLE applications.<\/p>\n\n\n\n<p>BleuIO offers an all-in-one solution for BLE development, bridging the gap between beginner-friendly usability and powerful functionality. With support for multiple platforms, easy integration with popular programming languages, and straightforward AT command access, BleuIO empowers developers to quickly and efficiently test, prototype, and deploy BLE applications.<\/p>\n\n\n\n<p>By using tools like the BLE Connectivity Test Tool, developers can focus on creating innovative applications without needing to dive deep into the complexities of BLE. BleuIO enables developers to bring their ideas to life, from IoT to healthcare and beyond. Start your BLE development journey with BleuIO today and see the difference in ease and efficiency it brings to your projects.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article takes a deep dive into the capabilities of BleuIO, exploring how it can simplify BLE application testing, especially in complex environments like IoT, health, automotive, and smart home applications. Whether you are a seasoned developer or a newcomer, BleuIO provides a reliable, versatile tool to jumpstart your BLE projects. We\u2019ll also cover an [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":953,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,2],"tags":[],"class_list":["post-952","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bleuio","category-bleuio-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>BLE Connectivity Test Tool using BleuIO - BleuIO - Create Bluetooth Low Energy application<\/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:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BLE Connectivity Test Tool using BleuIO - BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"og:description\" content=\"This article takes a deep dive into the capabilities of BleuIO, exploring how it can simplify BLE application testing, especially in complex environments like IoT, health, automotive, and smart home applications. Whether you are a seasoned developer or a newcomer, BleuIO provides a reliable, versatile tool to jumpstart your BLE projects. We\u2019ll also cover an [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/\" \/>\n<meta property=\"og:site_name\" content=\"BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-28T22:54:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-28T22:59:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/ble-connectivity-test-tool-using-bleuio.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1532\" \/>\n\t<meta property=\"og:image:height\" content=\"1001\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"BleuIO\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/\"},\"author\":{\"name\":\"BleuIO\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"headline\":\"BLE Connectivity Test Tool using BleuIO\",\"datePublished\":\"2024-10-28T22:54:21+00:00\",\"dateModified\":\"2024-10-28T22:59:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/\"},\"wordCount\":585,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ble-connectivity-test-tool-using-bleuio.jpg\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/\",\"name\":\"BLE Connectivity Test Tool using BleuIO - BleuIO - Create Bluetooth Low Energy application\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ble-connectivity-test-tool-using-bleuio.jpg\",\"datePublished\":\"2024-10-28T22:54:21+00:00\",\"dateModified\":\"2024-10-28T22:59:40+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ble-connectivity-test-tool-using-bleuio.jpg\",\"contentUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ble-connectivity-test-tool-using-bleuio.jpg\",\"width\":1532,\"height\":1001},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/ble-connectivity-test-tool-using-bleuio\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BLE Connectivity Test Tool using BleuIO\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/\",\"name\":\"BleuIO - Create Bluetooth Low Energy application\",\"description\":\"Learn Bluetooth Low Energy programming and build Bluetooth Low Energy Application\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\",\"name\":\"BleuIO\",\"sameAs\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/author\\\/biadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"BLE Connectivity Test Tool using BleuIO - BleuIO - Create Bluetooth Low Energy application","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.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/","og_locale":"en_US","og_type":"article","og_title":"BLE Connectivity Test Tool using BleuIO - BleuIO - Create Bluetooth Low Energy application","og_description":"This article takes a deep dive into the capabilities of BleuIO, exploring how it can simplify BLE application testing, especially in complex environments like IoT, health, automotive, and smart home applications. Whether you are a seasoned developer or a newcomer, BleuIO provides a reliable, versatile tool to jumpstart your BLE projects. We\u2019ll also cover an [&hellip;]","og_url":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/","og_site_name":"BleuIO - Create Bluetooth Low Energy application","article_published_time":"2024-10-28T22:54:21+00:00","article_modified_time":"2024-10-28T22:59:40+00:00","og_image":[{"width":1532,"height":1001,"url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/ble-connectivity-test-tool-using-bleuio.jpg","type":"image\/jpeg"}],"author":"BleuIO","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#article","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/"},"author":{"name":"BleuIO","@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"headline":"BLE Connectivity Test Tool using BleuIO","datePublished":"2024-10-28T22:54:21+00:00","dateModified":"2024-10-28T22:59:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/"},"wordCount":585,"commentCount":0,"image":{"@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/ble-connectivity-test-tool-using-bleuio.jpg","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/","url":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/","name":"BLE Connectivity Test Tool using BleuIO - BleuIO - Create Bluetooth Low Energy application","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#primaryimage"},"image":{"@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/ble-connectivity-test-tool-using-bleuio.jpg","datePublished":"2024-10-28T22:54:21+00:00","dateModified":"2024-10-28T22:59:40+00:00","author":{"@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"breadcrumb":{"@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#primaryimage","url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/ble-connectivity-test-tool-using-bleuio.jpg","contentUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2024\/10\/ble-connectivity-test-tool-using-bleuio.jpg","width":1532,"height":1001},{"@type":"BreadcrumbList","@id":"https:\/\/www.bleuio.com\/blog\/ble-connectivity-test-tool-using-bleuio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.bleuio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"BLE Connectivity Test Tool using BleuIO"}]},{"@type":"WebSite","@id":"https:\/\/www.bleuio.com\/blog\/#website","url":"https:\/\/www.bleuio.com\/blog\/","name":"BleuIO - Create Bluetooth Low Energy application","description":"Learn Bluetooth Low Energy programming and build Bluetooth Low Energy Application","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bleuio.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80","name":"BleuIO","sameAs":["https:\/\/www.bleuio.com\/blog"],"url":"https:\/\/www.bleuio.com\/blog\/author\/biadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/952","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/comments?post=952"}],"version-history":[{"count":3,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/952\/revisions"}],"predecessor-version":[{"id":957,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/952\/revisions\/957"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media\/953"}],"wp:attachment":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media?parent=952"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/categories?post=952"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/tags?post=952"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}