{"id":357,"date":"2022-06-29T14:02:56","date_gmt":"2022-06-29T14:02:56","guid":{"rendered":"https:\/\/www.bleuio.com\/blog\/?p=357"},"modified":"2022-07-01T10:21:21","modified_gmt":"2022-07-01T10:21:21","slug":"c-desktop-application-to-scan-for-nearby-bluetooth-devices","status":"publish","type":"post","link":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/","title":{"rendered":"C# desktop application to Scan for nearby Bluetooth devices"},"content":{"rendered":"\n<p><strong>Bluetooth Low Energy (BLE)<\/strong>&nbsp;is a low-power wireless technology used for connecting devices with each other. It is a popular communication method, especially in the era of the Internet of Things. Several devices around the house have a built-in Bluetooth transceiver and most of them provide useful capabilities to automate jobs. For that reason, it is really interesting to create a desktop application using C# that connects to the devices around the house and manages them.<\/p>\n\n\n\n<p>In this example, we are going to create a simple C# windows form application that scans and shows a list of nearby Bluetooth devices.&nbsp;<\/p>\n\n\n\n<p><strong>Let\u2019s start<\/strong><\/p>\n\n\n\n<p>As a first step let&#8217;s create a new project in visual studio and select C# windows form application from the list.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"202\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/image-6.png\" alt=\"\" class=\"wp-image-358\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/image-6.png 1024w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/image-6-300x59.png 300w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/image-6-768x152.png 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Choose a suitable name for your project.<br>Once the project is created, we will see a blank form screen where we will add buttons and labels to communicate with BleuIO graphically through the serial port.<\/p>\n\n\n\n<p>We will have buttons that connect and disconnects from the dongle. We create a button called Scan. And a text area will display a list of Bluetooth devices.<br>The form will look like this<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"577\" height=\"506\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-28-172008.jpg\" alt=\"\" class=\"wp-image-359\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-28-172008.jpg 577w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-28-172008-300x263.jpg 300w\" sizes=\"auto, (max-width: 577px) 100vw, 577px\" \/><\/figure>\n\n\n\n<p>The .cs file associated to this will have the following code.<br>Source code is available at https:\/\/github.com\/smart-sensor-devices-ab\/c-sharp-scan-bluetooth-device.git<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>using System;\nusing System.IO.Ports;\nusing System.Linq;\nusing System.Text;\nusing System.Windows.Forms;\n\nnamespace Scan_BLE_devices\n{\n    public partial class Form1 : Form\n    {\n        SerialPort mySerialPort = new SerialPort(\"COM18\", 57600, Parity.None, 8, StopBits.One);\n        public Form1()\n        {\n            InitializeComponent();\n            mySerialPort.DataReceived += new SerialDataReceivedEventHandler(mySerialPort_DataReceived);\n            mySerialPort.Open();\n\n        }\n\n        \/\/print response from the dongle\n        private void mySerialPort_DataReceived(object sender, SerialDataReceivedEventArgs e)\n        {\n            SerialPort sp = (SerialPort)sender;\n            string s = sp.ReadExisting();\n            output_data.Invoke(new EventHandler(delegate { output_data.Text += s + \"\\r\\n\"; }));\n            \/\/lbl_output.Invoke(this.myDelegate, new Object&#91;] { s });\n        }\n\n\n\n\n\n   \n\n        private void Form1_Load(object sender, EventArgs e)\n        {\n\n        }\n\n        private void btn_disconnect_Click_1(object sender, EventArgs e)\n        {\n            mySerialPort.Close();\n            Environment.Exit(0);\n        }\n\n        private void button1_Click_1(object sender, EventArgs e)\n        {\n            lbl_test.Text = \"Connected\";\n        }\n\n        private void submit_cmd_Click_1(object sender, EventArgs e)\n        {\n            output_data.Text = \"\";\n            byte&#91;] bytes = Encoding.UTF8.GetBytes(\"AT+CENTRAL\");\n            var inputByte = new byte&#91;] { 13 };\n            bytes = bytes.Concat(inputByte).ToArray();\n            mySerialPort.Write(bytes, 0, bytes.Length);\n\n            System.Threading.Thread.Sleep(1000);\n            output_data.Text = \"\";\n            byte&#91;] bytes2 = Encoding.UTF8.GetBytes(\"AT+GAPSCAN=3\");\n            var inputByte2 = new byte&#91;] { 13 };\n            bytes2 = bytes2.Concat(inputByte2).ToArray();\n            mySerialPort.Write(bytes2, 0, bytes2.Length);\n            \/\/System.Threading.Thread.Sleep(3000);\n        }\n\n        private void output_data_TextChanged(object sender, EventArgs e)\n        {\n\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<p>As you can notice I wrote COM18 to connect to serial port because BleuIO device on my computer is connected to COM18.<br>You can check your COM port from device manager.<br>Lets run the project and click on connect button.<\/p>\n\n\n\n<p>Once we are connected to BlueIO dongle through serial port, we will be able to scan for nearby Bluetooth device. Clicking on Scan button will show a list of nearby Bluetooth device on the screen.<\/p>\n\n\n\n<p><strong>Output<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"529\" height=\"495\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-28-172058.jpg\" alt=\"\" class=\"wp-image-360\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-28-172058.jpg 529w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-28-172058-300x281.jpg 300w\" sizes=\"auto, (max-width: 529px) 100vw, 529px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Bluetooth Low Energy (BLE)&nbsp;is a low-power wireless technology used for connecting devices with each other. It is a popular communication method, especially in the era of the Internet of Things. Several devices around the house have a built-in Bluetooth transceiver and most of them provide useful capabilities to automate jobs. For that reason, it is [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":361,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,2],"tags":[],"class_list":["post-357","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.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C# desktop application to Scan for nearby Bluetooth devices - 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\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# desktop application to Scan for nearby Bluetooth devices - BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"og:description\" content=\"Bluetooth Low Energy (BLE)&nbsp;is a low-power wireless technology used for connecting devices with each other. It is a popular communication method, especially in the era of the Internet of Things. Several devices around the house have a built-in Bluetooth transceiver and most of them provide useful capabilities to automate jobs. For that reason, it is [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/\" \/>\n<meta property=\"og:site_name\" content=\"BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-29T14:02:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-01T10:21:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/csharp-desktop-application-bluetooth-scan.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"666\" \/>\n\t<meta property=\"og:image:height\" content=\"387\" \/>\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\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/\"},\"author\":{\"name\":\"BleuIO\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"headline\":\"C# desktop application to Scan for nearby Bluetooth devices\",\"datePublished\":\"2022-06-29T14:02:56+00:00\",\"dateModified\":\"2022-07-01T10:21:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/\"},\"wordCount\":303,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/csharp-desktop-application-bluetooth-scan.jpg\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/\",\"name\":\"C# desktop application to Scan for nearby Bluetooth devices - BleuIO - Create Bluetooth Low Energy application\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/csharp-desktop-application-bluetooth-scan.jpg\",\"datePublished\":\"2022-06-29T14:02:56+00:00\",\"dateModified\":\"2022-07-01T10:21:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/csharp-desktop-application-bluetooth-scan.jpg\",\"contentUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/csharp-desktop-application-bluetooth-scan.jpg\",\"width\":666,\"height\":387,\"caption\":\"csharp desktop application bluetooth scan\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# desktop application to Scan for nearby Bluetooth devices\"}]},{\"@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":"C# desktop application to Scan for nearby Bluetooth devices - 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\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/","og_locale":"en_US","og_type":"article","og_title":"C# desktop application to Scan for nearby Bluetooth devices - BleuIO - Create Bluetooth Low Energy application","og_description":"Bluetooth Low Energy (BLE)&nbsp;is a low-power wireless technology used for connecting devices with each other. It is a popular communication method, especially in the era of the Internet of Things. Several devices around the house have a built-in Bluetooth transceiver and most of them provide useful capabilities to automate jobs. For that reason, it is [&hellip;]","og_url":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/","og_site_name":"BleuIO - Create Bluetooth Low Energy application","article_published_time":"2022-06-29T14:02:56+00:00","article_modified_time":"2022-07-01T10:21:21+00:00","og_image":[{"width":666,"height":387,"url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/csharp-desktop-application-bluetooth-scan.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\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#article","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/"},"author":{"name":"BleuIO","@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"headline":"C# desktop application to Scan for nearby Bluetooth devices","datePublished":"2022-06-29T14:02:56+00:00","dateModified":"2022-07-01T10:21:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/"},"wordCount":303,"commentCount":0,"image":{"@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/csharp-desktop-application-bluetooth-scan.jpg","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/","url":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/","name":"C# desktop application to Scan for nearby Bluetooth devices - BleuIO - Create Bluetooth Low Energy application","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#primaryimage"},"image":{"@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/csharp-desktop-application-bluetooth-scan.jpg","datePublished":"2022-06-29T14:02:56+00:00","dateModified":"2022-07-01T10:21:21+00:00","author":{"@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"breadcrumb":{"@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#primaryimage","url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/csharp-desktop-application-bluetooth-scan.jpg","contentUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2022\/06\/csharp-desktop-application-bluetooth-scan.jpg","width":666,"height":387,"caption":"csharp desktop application bluetooth scan"},{"@type":"BreadcrumbList","@id":"https:\/\/www.bleuio.com\/blog\/c-desktop-application-to-scan-for-nearby-bluetooth-devices\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.bleuio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"C# desktop application to Scan for nearby Bluetooth devices"}]},{"@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\/357","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=357"}],"version-history":[{"count":2,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/357\/revisions"}],"predecessor-version":[{"id":363,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/357\/revisions\/363"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media\/361"}],"wp:attachment":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media?parent=357"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/categories?post=357"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/tags?post=357"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}