{"id":46596,"date":"2019-09-26T00:00:00","date_gmt":"2019-09-26T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/golang-client\/"},"modified":"2025-11-13T12:54:50","modified_gmt":"2025-11-13T20:54:50","slug":"golang-client","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/golang-client\/","title":{"rendered":"Golang Client"},"content":{"rendered":"<p>If you prefer videos: <\/p>\n<div style=\"text-align:center\">\n<iframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/TXJVY8Drp3k\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe>\n<\/div>\n<h2> Introduction <\/h2>\n<p>Sometime last year, we released our <a href=\"https:\/\/griddb.net\/en\/blog\/getting-started-with-griddbs-golang-client\/\">initial blog post<\/a> which relayed information on how to get up and running using the <a href=\"https:\/\/github.com\/griddb\/go_client\">GridDB Go Client<\/a>. Because of some changes to both the process and installation, we&#8217;ve decided to release an update.<\/p>\n<p>As a small note on the Go client before you begin work: please know that the array type for GridDB is not yet available for the Go Client. <strong>If your project absolutely requires the array type, please use the Python\/C\/Java Client instead.<\/strong><\/p>\n<h2> Installation <\/h2>\n<h3> Install c_client<\/h3>\n<p><i>This small excerpt is taken from our <a href=\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\">Node.js Client Blog<\/i><\/a><\/p>\n<p>    The GridDB c_client (a preqrequisite to using the Go Client) can be found here: <a href=\"https:\/\/github.com\/griddb\/c_client\">https:\/\/github.com\/griddb\/c_client<\/a>. The c_client installation has been simplified since the last blog; instead of compiling from source yourself, there is now an RPM available for your convenience (<a href=\"https:\/\/github.com\/griddb\/c_client\/releases\">the releases page can be found here<\/a>). So to get started simply <code>wget<\/code> the latest RPM and install.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ wget \nhttps:\/\/github.com\/griddb\/c_client\/releases\/download\/v4.2.0\/griddb_c_client-4.2.0-1.linux.x86_64.rpm<\/code><\/pre>\n<\/p><\/div>\n<p>    then we need to actually install the rpm<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ sudo rpm -ivh griddb_c_client-4.2.0-1.linux.x86_64.rpm<\/code><\/pre>\n<\/p><\/div>\n<p>    and now the c_client is installed and ready in your <code>\/usr\/<\/code> directory. That was easy!<\/p>\n<p>With the C Client installed, we will need to point our LD_LIBRARY_PATH environment variable to the directory which contains the newly made files.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:\/usr\/griddb_c_client-4.2.0\/lib<\/code><\/pre>\n<\/p><\/div>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ export LIBRARY_PATH=$LIBRARY_PATH:\/usr\/griddb_c_client-4.2.0\/lib<\/code><\/pre>\n<\/p><\/div>\n<h3> Install Go Client <\/h3>\n<p>To install the Go Client is a bit more work as it has a couple of dependencies. Obviously the <a href=\"https:\/\/golang.org\/\">Go language<\/a> itself is needed, so please install that first and set your environment. While you&#8217;re setting your environment, please note that the following is mandatory for the Go Client to run successfully: <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ export GODEBUG=cgocheck=0<\/code><\/pre>\n<\/p><\/div>\n<p>This will disable Go&#8217;s default behavior of abiding by certain C pointer rules (default is cgocheck=1); you can learn more about this option here: <a href=\"https:\/\/golang.org\/cmd\/cgo\/#hdr-Passing_pointers\">https:\/\/golang.org\/cmd\/cgo\/#hdr-Passing_pointers<\/a>.<\/p>\n<p>Next let&#8217;s install some prereqs. If you would like to simply copy and paste the next commands, please switch the root user.<\/p>\n<p>First up is PCRE:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ wget https:\/\/sourceforge.net\/projects\/pcre\/files\/pcre\/8.39\/pcre-8.39.tar.gz\n$ tar xvfz pcre-8.39.tar.gz\n$ cd pcre-8.39\n$ .\/configure\n$ make\n$ make install<\/code><\/pre>\n<\/p><\/div>\n<p>And next is SWIG: <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ wget https:\/\/prdownloads.sourceforge.net\/swig\/swig-3.0.12.tar.gz\n$ tar xvfz swig-3.0.12.tar.gz\n$ cd swig-3.0.12\n$ .\/configure\n$ make\n$ make install<\/code><\/pre>\n<\/p><\/div>\n<p>Now let&#8217;s install the actual Go Client from github: <a href=\"https:\/\/github.com\/griddb\/go_client\/releases\">https:\/\/github.com\/griddb\/go_client\/releases<\/a><\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ wget \nhttps:\/\/github.com\/griddb\/go_client\/archive\/0.8.1.tar.gz<\/code><\/pre>\n<\/p><\/div>\n<p>and unzip the tar ball and <code>make<\/code><\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ tar xvzf 0.8.1.tar.gz\n$ cd go_client-0.8.1\n$ make<\/code><\/pre>\n<\/p><\/div>\n<p>Now that the Go Client is made, let&#8217;s point our GOPATH to the go client so that we can properly use the Go client with our code.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ export GOPATH=\"${GOPATH}:\/home\/lib\/go_client-0.8.1\"<\/code><\/pre>\n<\/p><\/div>\n<h3> Possible Issues Installing <\/h3>\n<h4> Issues Making<\/h4>\n<p>One common issue encountered is the following error: <\/p>\n<pre>go install github.com\/griddb\/go_client\ncan't load package: package github.com\/griddb\/go_client:\n  cannot find package \"github.com\/griddb\/go_client\"<\/pre>\n<p>This arises out of not having your environment properly set. If this happens, run a <code>make clean<\/code> within the directory to start from scratch, and make sure that the CGOCHECK is set to 0 (disabled) and that the LD_LIBRARY_PATH is pointing to your GridDB C Client (a prereq\/dependency for this package).<\/p>\n<h4> Issuing Importing Package Into Code <\/h4>\n<p>Another potential sore spot has to do with how Go organizes its remote packages (libraries outside the standard library). In Go, remote packages are fetched with the <code>go get<\/code> command which then places them in <code>yourgopath\/src\/packagerepository\/accountname\/package<\/code>. So if I download the echo web framework from Labstack for example, the code will auto-placed into <code>\/home\/israel\/go\/src\/github.com\/labstack\/echo<\/code>. So when you import the echo web framework in your code <code>import \"github.com\/labstack\/echo\"<\/code>, Go will look into these directories to pull the code.<\/p>\n<p>Knowing this, a developer would likely build the Go Client, place it into the proper directory using known rules, and attempt to <code>go build<\/code> their project. Except now they&#8217;re hit with a:<\/p>\n<pre>can't load package: package github.com\/griddb\/go_client: no Go files in \/home\/israel\/go\/src\/github.com\/griddb\/go_client<\/pre>\n<p>Luckily for us, this has an easy fix. To get this to work, we just need to move our directory out of the default Go path and anywhere else (\/home\/lib\/ for example) and then point our Go Path to this new location.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ export GOPATH=\"${GOPATH}:\/home\/lib\/go_client-0.8.1<\/code><\/pre>\n<\/p><\/div>\n<h2> Usage <\/h2>\n<p>Because the changes we wanted to highlight were more towards installation, we will kindly refer you to our <a href=\"https:\/\/griddb.net\/en\/blog\/getting-started-with-griddbs-golang-client\/\">previous blog post<\/a> for information regarding actual Go code.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the GridDB Go Client. Because of some changes to both the process and installation, we&#8217;ve decided to release an update. As a small note on the Go client before you [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":25800,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46596","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Golang Client | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/golang-client\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Golang Client | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/golang-client\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-26T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2018\/05\/blog_title_25.png\" \/>\n\t<meta property=\"og:image:width\" content=\"870\" \/>\n\t<meta property=\"og:image:height\" content=\"490\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Israel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Israel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/\"},\"author\":{\"name\":\"Israel\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\"},\"headline\":\"Golang Client\",\"datePublished\":\"2019-09-26T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/\"},\"wordCount\":631,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2018\/05\/blog_title_25.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/golang-client\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/\",\"name\":\"Golang Client | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2018\/05\/blog_title_25.png\",\"datePublished\":\"2019-09-26T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:50+00:00\",\"description\":\"If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/golang-client\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2018\/05\/blog_title_25.png\",\"contentUrl\":\"\/wp-content\/uploads\/2018\/05\/blog_title_25.png\",\"width\":870,\"height\":490},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb.net\/en\/#website\",\"url\":\"https:\/\/griddb.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\",\"name\":\"Israel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"caption\":\"Israel\"},\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/israel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Golang Client | GridDB: Open Source Time Series Database for IoT","description":"If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the","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:\/\/griddb.net\/en\/blog\/golang-client\/","og_locale":"en_US","og_type":"article","og_title":"Golang Client | GridDB: Open Source Time Series Database for IoT","og_description":"If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the","og_url":"https:\/\/griddb.net\/en\/blog\/golang-client\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2019-09-26T07:00:00+00:00","article_modified_time":"2025-11-13T20:54:50+00:00","og_image":[{"width":870,"height":490,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2018\/05\/blog_title_25.png","type":"image\/png"}],"author":"Israel","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Israel","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/"},"author":{"name":"Israel","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740"},"headline":"Golang Client","datePublished":"2019-09-26T07:00:00+00:00","dateModified":"2025-11-13T20:54:50+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/"},"wordCount":631,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2018\/05\/blog_title_25.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/golang-client\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/","url":"https:\/\/griddb.net\/en\/blog\/golang-client\/","name":"Golang Client | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2018\/05\/blog_title_25.png","datePublished":"2019-09-26T07:00:00+00:00","dateModified":"2025-11-13T20:54:50+00:00","description":"If you prefer videos: Introduction Sometime last year, we released our initial blog post which relayed information on how to get up and running using the","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/golang-client\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/golang-client\/#primaryimage","url":"\/wp-content\/uploads\/2018\/05\/blog_title_25.png","contentUrl":"\/wp-content\/uploads\/2018\/05\/blog_title_25.png","width":870,"height":490},{"@type":"WebSite","@id":"https:\/\/griddb.net\/en\/#website","url":"https:\/\/griddb.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740","name":"Israel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","caption":"Israel"},"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/israel\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/comments?post=46596"}],"version-history":[{"count":1,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46596\/revisions"}],"predecessor-version":[{"id":51281,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46596\/revisions\/51281"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media\/25800"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media?parent=46596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/categories?post=46596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/tags?post=46596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}