{"id":5447,"date":"2013-02-11T13:42:09","date_gmt":"2013-02-11T13:42:09","guid":{"rendered":"http:\/\/zerokidz.com\/ideas\/?p=5447"},"modified":"2014-06-15T04:51:38","modified_gmt":"2014-06-15T08:51:38","slug":"sending-tweets-with-curl-in-max","status":"publish","type":"post","link":"https:\/\/reactivemusic.net\/?p=5447","title":{"rendered":"sending Tweets with curl in Max,"},"content":{"rendered":"<p class=\"lead\">Using xively.com and zapier.com<\/p>\n<p><a href=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Screen Shot 2013-01-02 at 9.00.22 PM\" src=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png\" alt=\"\" width=\"300\" height=\"156\" \/><\/a><\/p>\n<p>Note: To get this project to work you&#8217;ll need a Twitter account. And you&#8217;ll need to set up a device (feed) at xively.com and a &#8216;zap&#8217; at zapier.com as directed in this\u00a0post. It explains how to send tweets using triggers.<\/p>\n<p><a href=\"https:\/\/reactivemusic.net\/?p=6903\">\u00a0https:\/\/reactivemusic.net\/?p=6903<\/a><\/p>\n<p>Also, you may notice delays due to the number of steps involved.<\/p>\n<p>Looking for an easier way? Send Tweets using ruby:\u00a0<a href=\"https:\/\/reactivemusic.net\/?p=7013\">https:\/\/reactivemusic.net\/?p=7013<\/a><\/p>\n<h3>download<\/h3>\n<p><a href=\"https:\/\/github.com\/tkzic\/internet-sensors\">https:\/\/github.com\/tkzic\/internet-sensors<\/a><\/p>\n<p>folder: twitter-curl<\/p>\n<h4><span style=\"line-height: 1.1;\">files<\/span><\/h4>\n<h5>Max<\/h5>\n<ul>\n<li>tweetCurl5a.maxpat<\/li>\n<\/ul>\n<h5>externals<\/h5>\n<p>[aka.shell] download from here:\u00a0<a href=\"http:\/\/www.iamas.ac.jp\/~aka\/max\/\">http:\/\/www.iamas.ac.jp\/~aka\/max\/<\/a>\u00a0&#8211; and add the path to the folder to Options | File Preferences in Max<\/p>\n<h3>authorization<\/h3>\n<ul>\n<li>xively.com feed id and api-key is embedded in max patch<\/li>\n<li>you need a Twitter account<\/li>\n<li>you need to set up a xively.com feed with twitter trigger, (as described here <a href=\"https:\/\/reactivemusic.net\/?p=6903\">\u00a0https:\/\/reactivemusic.net\/?p=6903<\/a>) to get your own feed id, API-key, and authorize access to your Twitter account<\/li>\n<\/ul>\n<h3>instructions<\/h3>\n<ul>\n<li>Open the Max patch: tweetcurl5a.maxpat<\/li>\n<li>enter your xively feed number and API-key into the fields (then press enter)<\/li>\n<li>Type your Tweet text.<\/li>\n<li>Press the big green button.<\/li>\n<\/ul>\n<div>\n<h3>notes on curl<\/h3>\n<p>You can use curl for http: requests in Max by formatting the command line with [sprintf] and running it in [aka.shell]. There are a few idiosyncrasies &#8211; for example with escape sequences.<\/p>\n<p>In tweetCurl5a.maxpat, the curl command is built in two sections:<\/p>\n<ol>\n<li><span style=\"line-height: 1.6;\">The request data is written to a data file \/tmp\/abc.json<\/span><\/li>\n<li><span style=\"line-height: 1.6;\">\u00a0the actual curl command is formatted and run from the command line.\u00a0<\/span><\/li>\n<\/ol>\n<div><span style=\"line-height: 1.6;\">Here is the part of the patch which formats request data:<\/span><\/div>\n<div><\/div>\n<p><a href=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/02\/Screen-Shot-2013-02-11-at-8.47.31-AM.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Screen Shot 2013-02-11 at 8.47.31 AM\" src=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/02\/Screen-Shot-2013-02-11-at-8.47.31-AM-300x128.png\" alt=\"\" width=\"300\" height=\"128\" \/><\/a><\/p>\n<p>Using &#8216;quotes&#8217; with [sprintf]<\/p>\n<p>You&#8217;ll notice a lot of backslashes used in [sprintf]. This is done to preserve quotes. Normally a quote in [sprintf] indicates a string. Use 3 backslashes to escape a quote:<\/p>\n<pre>\\\\\\&quot;<\/pre>\n<p>Passing arguments into [sprintf]<\/p>\n<p>The [sprintf] code is obtuse because we are formatting JSON data. The resulting data looks like this:<\/p>\n<pre>{ &quot;id&quot;:95586, &quot;datastreams&quot;:[{ &quot;current_value&quot;:&quot;this is a tweet&quot;, &quot;id&quot;: &quot;tweet&quot;}]}<\/pre>\n<p>&nbsp;<\/p>\n<p>Note that you can pass arguments into [sprintf] using %s &#8211; but if you are using a [textedit] to collect data from the user, you&#8217;ll need to use [tosymbol] to consolidate the text into a single symbol before passing into [sprintf]<\/p>\n<p>Here&#8217;s the code which writes the formatted JSON data to a file:<\/p>\n<p><a href=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/02\/Screen-Shot-2013-02-11-at-8.18.05-PM.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Screen Shot 2013-02-11 at 8.18.05 PM\" src=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/02\/Screen-Shot-2013-02-11-at-8.18.05-PM.png\" alt=\"\" width=\"240\" height=\"233\" \/><\/a><\/p>\n<p>The next step is to format the curl command, which will read the JSON data file and send an http: request to cosm.com. Here you can see the [sprintf] for this command.<\/p>\n<p><a href=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/02\/Screen-Shot-2013-02-11-at-8.58.18-AM1.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Screen Shot 2013-02-11 at 8.58.18 AM\" src=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/02\/Screen-Shot-2013-02-11-at-8.58.18-AM1-300x117.png\" alt=\"\" width=\"300\" height=\"117\" \/><\/a><\/p>\n<h6>Redirecting aka.shell output to the Max window<\/h6>\n<p>At the very end of the [sprintf] you will see<\/p>\n<pre>&gt;2&amp;1<\/pre>\n<pre><\/pre>\n<p>This is the linux method to redirect error messages and standard output from [aka.shell] to the same place, which in this case will be the Max window.<\/p>\n<h6>command line curl<\/h6>\n<p>By the way, here is what the curl command will look like on the command line<\/p>\n<pre>curl -v --request PUT --data-binary @\/tmp\/abc.json --header &quot;X-ApiKey: abcdefg1234567&quot; http:\/\/api.cosm.com\/v2\/feeds\/95586.json 2&gt;&amp;1<\/pre>\n<p>&nbsp;<\/p>\n<p>Note: The actual ApiKey above has been replaced with: abcdefg1234567 &#8211; so that you don&#8217;t accidentally send embarrassing Tweets from my account.<\/p>\n<div><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Using xively.com and zapier.com Note: To get this project to work you&#8217;ll need a Twitter account. And you&#8217;ll need to set up a device (feed) at xively.com and a &#8216;zap&#8217; at zapier.com as directed in this\u00a0post. It explains how to send tweets using triggers. \u00a0https:\/\/reactivemusic.net\/?p=6903 Also, you may notice delays due to the number of &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/reactivemusic.net\/?p=5447\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;sending Tweets with curl in Max,&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[143,275],"tags":[161,170,6,345,190],"class_list":["post-5447","post","type-post","status-publish","format-standard","hentry","category-interactive-media-art","category-internet-sensors","tag-api","tag-curl","tag-interactive-media","tag-maxmsp","tag-portfolio"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>sending Tweets with curl in Max, - reactive music<\/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:\/\/reactivemusic.net\/?p=5447\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"sending Tweets with curl in Max, - reactive music\" \/>\n<meta property=\"og:description\" content=\"Using xively.com and zapier.com Note: To get this project to work you&#8217;ll need a Twitter account. And you&#8217;ll need to set up a device (feed) at xively.com and a &#8216;zap&#8217; at zapier.com as directed in this\u00a0post. It explains how to send tweets using triggers. \u00a0https:\/\/reactivemusic.net\/?p=6903 Also, you may notice delays due to the number of &hellip; Continue reading &quot;sending Tweets with curl in Max,&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/reactivemusic.net\/?p=5447\" \/>\n<meta property=\"og:site_name\" content=\"reactive music\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-11T13:42:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-06-15T08:51:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png\" \/>\n<meta name=\"author\" content=\"Tom Zicarelli\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tom Zicarelli\" \/>\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:\\\/\\\/reactivemusic.net\\\/?p=5447#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447\"},\"author\":{\"name\":\"Tom Zicarelli\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#\\\/schema\\\/person\\\/56224d281582df7e5518e037ca63e571\"},\"headline\":\"sending Tweets with curl in Max,\",\"datePublished\":\"2013-02-11T13:42:09+00:00\",\"dateModified\":\"2014-06-15T08:51:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447\"},\"wordCount\":522,\"image\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png\",\"keywords\":[\"API\",\"curl\",\"interactive media\",\"Max\\\/MSP\",\"portfolio\"],\"articleSection\":[\"interactive media art\",\"internet-sensors\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447\",\"url\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447\",\"name\":\"sending Tweets with curl in Max, - reactive music\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png\",\"datePublished\":\"2013-02-11T13:42:09+00:00\",\"dateModified\":\"2014-06-15T08:51:38+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#\\\/schema\\\/person\\\/56224d281582df7e5518e037ca63e571\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/reactivemusic.net\\\/?p=5447\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447#primaryimage\",\"url\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png\",\"contentUrl\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=5447#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/reactivemusic.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"sending Tweets with curl in Max,\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#website\",\"url\":\"https:\\\/\\\/reactivemusic.net\\\/\",\"name\":\"reactive music\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/reactivemusic.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#\\\/schema\\\/person\\\/56224d281582df7e5518e037ca63e571\",\"name\":\"Tom Zicarelli\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g\",\"caption\":\"Tom Zicarelli\"},\"sameAs\":[\"http:\\\/\\\/tomzicarelli.com\"],\"url\":\"https:\\\/\\\/reactivemusic.net\\\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"sending Tweets with curl in Max, - reactive music","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:\/\/reactivemusic.net\/?p=5447","og_locale":"en_US","og_type":"article","og_title":"sending Tweets with curl in Max, - reactive music","og_description":"Using xively.com and zapier.com Note: To get this project to work you&#8217;ll need a Twitter account. And you&#8217;ll need to set up a device (feed) at xively.com and a &#8216;zap&#8217; at zapier.com as directed in this\u00a0post. It explains how to send tweets using triggers. \u00a0https:\/\/reactivemusic.net\/?p=6903 Also, you may notice delays due to the number of &hellip; Continue reading \"sending Tweets with curl in Max,\"","og_url":"https:\/\/reactivemusic.net\/?p=5447","og_site_name":"reactive music","article_published_time":"2013-02-11T13:42:09+00:00","article_modified_time":"2014-06-15T08:51:38+00:00","og_image":[{"url":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png","type":"","width":"","height":""}],"author":"Tom Zicarelli","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tom Zicarelli","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/reactivemusic.net\/?p=5447#article","isPartOf":{"@id":"https:\/\/reactivemusic.net\/?p=5447"},"author":{"name":"Tom Zicarelli","@id":"https:\/\/reactivemusic.net\/#\/schema\/person\/56224d281582df7e5518e037ca63e571"},"headline":"sending Tweets with curl in Max,","datePublished":"2013-02-11T13:42:09+00:00","dateModified":"2014-06-15T08:51:38+00:00","mainEntityOfPage":{"@id":"https:\/\/reactivemusic.net\/?p=5447"},"wordCount":522,"image":{"@id":"https:\/\/reactivemusic.net\/?p=5447#primaryimage"},"thumbnailUrl":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png","keywords":["API","curl","interactive media","Max\/MSP","portfolio"],"articleSection":["interactive media art","internet-sensors"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/reactivemusic.net\/?p=5447","url":"https:\/\/reactivemusic.net\/?p=5447","name":"sending Tweets with curl in Max, - reactive music","isPartOf":{"@id":"https:\/\/reactivemusic.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/reactivemusic.net\/?p=5447#primaryimage"},"image":{"@id":"https:\/\/reactivemusic.net\/?p=5447#primaryimage"},"thumbnailUrl":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png","datePublished":"2013-02-11T13:42:09+00:00","dateModified":"2014-06-15T08:51:38+00:00","author":{"@id":"https:\/\/reactivemusic.net\/#\/schema\/person\/56224d281582df7e5518e037ca63e571"},"breadcrumb":{"@id":"https:\/\/reactivemusic.net\/?p=5447#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/reactivemusic.net\/?p=5447"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/reactivemusic.net\/?p=5447#primaryimage","url":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png","contentUrl":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2013-01-02-at-9.00.22-PM-300x156.png"},{"@type":"BreadcrumbList","@id":"https:\/\/reactivemusic.net\/?p=5447#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/reactivemusic.net\/"},{"@type":"ListItem","position":2,"name":"sending Tweets with curl in Max,"}]},{"@type":"WebSite","@id":"https:\/\/reactivemusic.net\/#website","url":"https:\/\/reactivemusic.net\/","name":"reactive music","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/reactivemusic.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/reactivemusic.net\/#\/schema\/person\/56224d281582df7e5518e037ca63e571","name":"Tom Zicarelli","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g","caption":"Tom Zicarelli"},"sameAs":["http:\/\/tomzicarelli.com"],"url":"https:\/\/reactivemusic.net\/?author=2"}]}},"_links":{"self":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts\/5447","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5447"}],"version-history":[{"count":32,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts\/5447\/revisions"}],"predecessor-version":[{"id":14099,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts\/5447\/revisions\/14099"}],"wp:attachment":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5447"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5447"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5447"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}