login['username'] = $username; $this->login['password'] = $password; }/*}}}*/ function setOrder($orderid, $orderdescription, $tax, $shipping, $ponumber, $ipaddress, $merchant_defined_field_1, $merchant_defined_field_2, $merchant_defined_field_3, $merchant_defined_field_4, $merchant_defined_field_5 ) {/*{{{*/ $this->order['orderid'] = $orderid; $this->order['orderdescription'] = $orderdescription; $this->order['tax'] = $tax; $this->order['shipping'] = $shipping; $this->order['ponumber'] = $ponumber; $this->order['ipaddress'] = $ipaddress; $this->order['merchant_defined_field_1'] = $merchant_defined_field_1; $this->order['merchant_defined_field_2'] = $merchant_defined_field_2; $this->order['merchant_defined_field_3'] = $merchant_defined_field_3; $this->order['merchant_defined_field_4'] = $merchant_defined_field_4; $this->order['merchant_defined_field_5'] = $merchant_defined_field_5; }/*}}}*/ function setBilling($firstname, $lastname, $company, $address1, $address2, $city, $state, $zip, $country, $phone, $fax, $email, $website) {/*{{{*/ $this->billing['firstname'] = $firstname; $this->billing['lastname'] = $lastname; $this->billing['company'] = $company; $this->billing['address1'] = $address1; $this->billing['address2'] = $address2; $this->billing['city'] = $city; $this->billing['state'] = $state; $this->billing['zip'] = $zip; $this->billing['country'] = $country; $this->billing['phone'] = $phone; $this->billing['fax'] = $fax; $this->billing['email'] = $email; $this->billing['website'] = $website; }/*}}}*/ function setShipping($firstname, $lastname, $company, $address1, $address2, $city, $state, $zip, $country, $email) {/*{{{*/ $this->shipping['firstname'] = $firstname; $this->shipping['lastname'] = $lastname; $this->shipping['company'] = $company; $this->shipping['address1'] = $address1; $this->shipping['address2'] = $address2; $this->shipping['city'] = $city; $this->shipping['state'] = $state; $this->shipping['zip'] = $zip; $this->shipping['country'] = $country; $this->shipping['email'] = $email; }/*}}}*/ // Transaction Functions function doSale($amount, $ccnumber, $ccexp, $cvv="") {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Sales Information $query .= "ccnumber=" . urlencode($ccnumber) . "&"; $query .= "ccexp=" . urlencode($ccexp) . "&"; $query .= "amount=" . urlencode(number_format($amount,2,".","")) . "&"; $query .= "cvv=" . urlencode($cvv) . "&"; // Order Information $query .= "ipaddress=" . urlencode($this->order['ipaddress']) . "&"; $query .= "orderid=" . urlencode($this->order['orderid']) . "&"; $query .= "orderdescription=" . urlencode($this->order['orderdescription']) . "&"; $query .= "tax=" . urlencode(number_format($this->order['tax'],2,".","")) . "&"; $query .= "shipping=" . urlencode(number_format($this->order['shipping'],2,".","")) . "&"; $query .= "ponumber=" . urlencode($this->order['ponumber']) . "&"; $query .= "merchant_defined_field_1=" . urlencode($this->order['merchant_defined_field_1']) . "&"; $query .= "merchant_defined_field_2=" . urlencode($this->order['merchant_defined_field_2']) . "&"; $query .= "merchant_defined_field_3=" . urlencode($this->order['merchant_defined_field_3']) . "&"; $query .= "merchant_defined_field_4=" . urlencode($this->order['merchant_defined_field_4']) . "&"; $query .= "merchant_defined_field_5=" . urlencode($this->order['merchant_defined_field_5']) . "&"; // Billing Information $query .= "firstname=" . urlencode($this->billing['firstname']) . "&"; $query .= "lastname=" . urlencode($this->billing['lastname']) . "&"; $query .= "company=" . urlencode($this->billing['company']) . "&"; $query .= "address1=" . urlencode($this->billing['address1']) . "&"; $query .= "address2=" . urlencode($this->billing['address2']) . "&"; $query .= "city=" . urlencode($this->billing['city']) . "&"; $query .= "state=" . urlencode($this->billing['state']) . "&"; $query .= "zip=" . urlencode($this->billing['zip']) . "&"; $query .= "country=" . urlencode($this->billing['country']) . "&"; $query .= "phone=" . urlencode($this->billing['phone']) . "&"; $query .= "fax=" . urlencode($this->billing['fax']) . "&"; $query .= "email=" . urlencode($this->billing['email']) . "&"; $query .= "website=" . urlencode($this->billing['website']) . "&"; // Shipping Information $query .= "shipping_firstname=" . urlencode($this->shipping['firstname']) . "&"; $query .= "shipping_lastname=" . urlencode($this->shipping['lastname']) . "&"; $query .= "shipping_company=" . urlencode($this->shipping['company']) . "&"; $query .= "shipping_address1=" . urlencode($this->shipping['address1']) . "&"; $query .= "shipping_address2=" . urlencode($this->shipping['address2']) . "&"; $query .= "shipping_city=" . urlencode($this->shipping['city']) . "&"; $query .= "shipping_state=" . urlencode($this->shipping['state']) . "&"; $query .= "shipping_zip=" . urlencode($this->shipping['zip']) . "&"; $query .= "shipping_country=" . urlencode($this->shipping['country']) . "&"; $query .= "shipping_email=" . urlencode($this->shipping['email']) . "&"; $query .= "type=sale"; return $this->_doPost($query); }/*}}}*/ function doAuth($amount, $ccnumber, $ccexp, $cvv="") {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Sales Information $query .= "ccnumber=" . urlencode($ccnumber) . "&"; $query .= "ccexp=" . urlencode($ccexp) . "&"; $query .= "amount=" . urlencode(number_format($amount,2,".","")) . "&"; $query .= "cvv=" . urlencode($cvv) . "&"; // Order Information $query .= "ipaddress=" . urlencode($this->order['ipaddress']) . "&"; $query .= "orderid=" . urlencode($this->order['orderid']) . "&"; $query .= "orderdescription=" . urlencode($this->order['orderdescription']) . "&"; $query .= "tax=" . urlencode(number_format($this->order['tax'],2,".","")) . "&"; $query .= "shipping=" . urlencode(number_format($this->order['shipping'],2,".","")) . "&"; $query .= "ponumber=" . urlencode($this->order['ponumber']) . "&"; // Billing Information $query .= "firstname=" . urlencode($this->billing['firstname']) . "&"; $query .= "lastname=" . urlencode($this->billing['lastname']) . "&"; $query .= "company=" . urlencode($this->billing['company']) . "&"; $query .= "address1=" . urlencode($this->billing['address1']) . "&"; $query .= "address2=" . urlencode($this->billing['address2']) . "&"; $query .= "city=" . urlencode($this->billing['city']) . "&"; $query .= "state=" . urlencode($this->billing['state']) . "&"; $query .= "zip=" . urlencode($this->billing['zip']) . "&"; $query .= "country=" . urlencode($this->billing['country']) . "&"; $query .= "phone=" . urlencode($this->billing['phone']) . "&"; $query .= "fax=" . urlencode($this->billing['fax']) . "&"; $query .= "email=" . urlencode($this->billing['email']) . "&"; $query .= "website=" . urlencode($this->billing['website']) . "&"; // Shipping Information $query .= "shipping_firstname=" . urlencode($this->shipping['firstname']) . "&"; $query .= "shipping_lastname=" . urlencode($this->shipping['lastname']) . "&"; $query .= "shipping_company=" . urlencode($this->shipping['company']) . "&"; $query .= "shipping_address1=" . urlencode($this->shipping['address1']) . "&"; $query .= "shipping_address2=" . urlencode($this->shipping['address2']) . "&"; $query .= "shipping_city=" . urlencode($this->shipping['city']) . "&"; $query .= "shipping_state=" . urlencode($this->shipping['state']) . "&"; $query .= "shipping_zip=" . urlencode($this->shipping['zip']) . "&"; $query .= "shipping_country=" . urlencode($this->shipping['country']) . "&"; $query .= "shipping_email=" . urlencode($this->shipping['email']) . "&"; $query .= "type=auth"; return $this->_doPost($query); }/*}}}*/ function doCredit($amount, $ccnumber, $ccexp) {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Sales Information $query .= "ccnumber=" . urlencode($ccnumber) . "&"; $query .= "ccexp=" . urlencode($ccexp) . "&"; $query .= "amount=" . urlencode(number_format($amount,2,".","")) . "&"; // Order Information $query .= "ipaddress=" . urlencode($this->order['ipaddress']) . "&"; $query .= "orderid=" . urlencode($this->order['orderid']) . "&"; $query .= "orderdescription=" . urlencode($this->order['orderdescription']) . "&"; $query .= "tax=" . urlencode(number_format($this->order['tax'],2,".","")) . "&"; $query .= "shipping=" . urlencode(number_format($this->order['shipping'],2,".","")) . "&"; $query .= "ponumber=" . urlencode($this->order['ponumber']) . "&"; // Billing Information $query .= "firstname=" . urlencode($this->billing['firstname']) . "&"; $query .= "lastname=" . urlencode($this->billing['lastname']) . "&"; $query .= "company=" . urlencode($this->billing['company']) . "&"; $query .= "address1=" . urlencode($this->billing['address1']) . "&"; $query .= "address2=" . urlencode($this->billing['address2']) . "&"; $query .= "city=" . urlencode($this->billing['city']) . "&"; $query .= "state=" . urlencode($this->billing['state']) . "&"; $query .= "zip=" . urlencode($this->billing['zip']) . "&"; $query .= "country=" . urlencode($this->billing['country']) . "&"; $query .= "phone=" . urlencode($this->billing['phone']) . "&"; $query .= "fax=" . urlencode($this->billing['fax']) . "&"; $query .= "email=" . urlencode($this->billing['email']) . "&"; $query .= "website=" . urlencode($this->billing['website']) . "&"; $query .= "type=credit"; return $this->_doPost($query); }/*}}}*/ function doOffline($authorizationcode, $amount, $ccnumber, $ccexp) {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Sales Information $query .= "ccnumber=" . urlencode($ccnumber) . "&"; $query .= "ccexp=" . urlencode($ccexp) . "&"; $query .= "amount=" . urlencode(number_format($amount,2,".","")) . "&"; $query .= "authorizationcode=" . urlencode($authorizationcode) . "&"; // Order Information $query .= "ipaddress=" . urlencode($this->order['ipaddress']) . "&"; $query .= "orderid=" . urlencode($this->order['orderid']) . "&"; $query .= "orderdescription=" . urlencode($this->order['orderdescription']) . "&"; $query .= "tax=" . urlencode(number_format($this->order['tax'],2,".","")) . "&"; $query .= "shipping=" . urlencode(number_format($this->order['shipping'],2,".","")) . "&"; $query .= "ponumber=" . urlencode($this->order['ponumber']) . "&"; // Billing Information $query .= "firstname=" . urlencode($this->billing['firstname']) . "&"; $query .= "lastname=" . urlencode($this->billing['lastname']) . "&"; $query .= "company=" . urlencode($this->billing['company']) . "&"; $query .= "address1=" . urlencode($this->billing['address1']) . "&"; $query .= "address2=" . urlencode($this->billing['address2']) . "&"; $query .= "city=" . urlencode($this->billing['city']) . "&"; $query .= "state=" . urlencode($this->billing['state']) . "&"; $query .= "zip=" . urlencode($this->billing['zip']) . "&"; $query .= "country=" . urlencode($this->billing['country']) . "&"; $query .= "phone=" . urlencode($this->billing['phone']) . "&"; $query .= "fax=" . urlencode($this->billing['fax']) . "&"; $query .= "email=" . urlencode($this->billing['email']) . "&"; $query .= "website=" . urlencode($this->billing['website']) . "&"; // Shipping Information $query .= "shipping_firstname=" . urlencode($this->shipping['firstname']) . "&"; $query .= "shipping_lastname=" . urlencode($this->shipping['lastname']) . "&"; $query .= "shipping_company=" . urlencode($this->shipping['company']) . "&"; $query .= "shipping_address1=" . urlencode($this->shipping['address1']) . "&"; $query .= "shipping_address2=" . urlencode($this->shipping['address2']) . "&"; $query .= "shipping_city=" . urlencode($this->shipping['city']) . "&"; $query .= "shipping_state=" . urlencode($this->shipping['state']) . "&"; $query .= "shipping_zip=" . urlencode($this->shipping['zip']) . "&"; $query .= "shipping_country=" . urlencode($this->shipping['country']) . "&"; $query .= "shipping_email=" . urlencode($this->shipping['email']) . "&"; $query .= "type=offline"; return $this->_doPost($query); }/*}}}*/ function doCapture($transactionid, $amount =0) {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Transaction Information $query .= "transactionid=" . urlencode($transactionid) . "&"; if ($amount>0) { $query .= "amount=" . urlencode(number_format($amount,2,".","")) . "&"; } $query .= "type=capture"; return $this->_doPost($query); }/*}}}*/ function doVoid($transactionid) {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Transaction Information $query .= "transactionid=" . urlencode($transactionid) . "&"; $query .= "type=void"; return $this->_doPost($query); }/*}}}*/ function doRefund($transactionid, $amount = 0) {/*{{{*/ $query = ""; // Login Information $query .= "username=" . urlencode($this->login['username']) . "&"; $query .= "password=" . urlencode($this->login['password']) . "&"; // Transaction Information $query .= "transactionid=" . urlencode($transactionid) . "&"; if ($amount>0) { $query .= "amount=" . urlencode(number_format($amount,2,".","")) . "&"; } $query .= "type=refund"; return $this->_doPost($query); }/*}}}*/ function _doPost($query) {/*{{{*/ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://secure.networkmerchants.com/api/transact.php"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15); curl_setopt($ch, CURLOPT_TIMEOUT, 15); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_POSTFIELDS, $query); curl_setopt($ch, CURLOPT_POST, 1); if (!($data = curl_exec($ch))) { return ERROR; } curl_close($ch); unset($ch); //print "\n$data\n"; $data = explode("&",$data); for($i=0;$iresponses[$rdata[0]] = $rdata[1]; } return $this->responses['response']; }/*}}}*/ function getIP(){ $tmp = getenv("HTTP_CLIENT_IP"); if ( $tmp && !strcasecmp( $tmp, "unknown")) return $tmp; $tmp = getenv("HTTP_X_FORWARDED_FOR"); if( $tmp && !strcasecmp( $tmp, "unknown")) return $tmp; // no sense in testing SERVER after this. // $_SERVER[ 'REMOTE_ADDR' ] == gentenv( 'REMOTE_ADDR' ); $tmp = getenv("REMOTE_ADDR"); if($tmp && !strcasecmp($tmp, "unknown")) return $tmp; return("unknown"); } } ?>{"id":1,"date":"2024-02-23T20:40:27","date_gmt":"2024-02-23T20:40:27","guid":{"rendered":"https:\/\/synergyis.info\/?p=1"},"modified":"2024-02-23T20:40:27","modified_gmt":"2024-02-23T20:40:27","slug":"hello-world","status":"publish","type":"post","link":"https:\/\/synergyis.info\/?p=1","title":{"rendered":"Hello world!"},"content":{"rendered":"\n

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!<\/p>\n","protected":false},"excerpt":{"rendered":"

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"\nHello world! - test site<\/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:\/\/synergyis.info\/?p=1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hello world! - test site\" \/>\n<meta property=\"og:description\" content=\"Welcome to WordPress. This is your first post. Edit or delete it, then start writing!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/synergyis.info\/?p=1\" \/>\n<meta property=\"og:site_name\" content=\"test site\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-23T20:40:27+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/synergyis.info\/?p=1\",\"url\":\"https:\/\/synergyis.info\/?p=1\",\"name\":\"Hello world! - test site\",\"isPartOf\":{\"@id\":\"https:\/\/synergyis.info\/#website\"},\"datePublished\":\"2024-02-23T20:40:27+00:00\",\"dateModified\":\"2024-02-23T20:40:27+00:00\",\"author\":{\"@id\":\"https:\/\/synergyis.info\/#\/schema\/person\/4c7cdeab222e50a5459749f1aec566f9\"},\"breadcrumb\":{\"@id\":\"https:\/\/synergyis.info\/?p=1#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/synergyis.info\/?p=1\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/synergyis.info\/?p=1#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/synergyis.info\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hello world!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/synergyis.info\/#website\",\"url\":\"https:\/\/synergyis.info\/\",\"name\":\"test site\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/synergyis.info\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/synergyis.info\/#\/schema\/person\/4c7cdeab222e50a5459749f1aec566f9\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/synergyis.info\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b47a8fdd7401532411852fc574d92abc14d533af38871ea4658975fe51d803f4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b47a8fdd7401532411852fc574d92abc14d533af38871ea4658975fe51d803f4?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/synergyis.info\"],\"url\":\"https:\/\/synergyis.info\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hello world! - test site","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:\/\/synergyis.info\/?p=1","og_locale":"en_US","og_type":"article","og_title":"Hello world! - test site","og_description":"Welcome to WordPress. This is your first post. Edit or delete it, then start writing!","og_url":"https:\/\/synergyis.info\/?p=1","og_site_name":"test site","article_published_time":"2024-02-23T20:40:27+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/synergyis.info\/?p=1","url":"https:\/\/synergyis.info\/?p=1","name":"Hello world! - test site","isPartOf":{"@id":"https:\/\/synergyis.info\/#website"},"datePublished":"2024-02-23T20:40:27+00:00","dateModified":"2024-02-23T20:40:27+00:00","author":{"@id":"https:\/\/synergyis.info\/#\/schema\/person\/4c7cdeab222e50a5459749f1aec566f9"},"breadcrumb":{"@id":"https:\/\/synergyis.info\/?p=1#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/synergyis.info\/?p=1"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/synergyis.info\/?p=1#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/synergyis.info\/"},{"@type":"ListItem","position":2,"name":"Hello world!"}]},{"@type":"WebSite","@id":"https:\/\/synergyis.info\/#website","url":"https:\/\/synergyis.info\/","name":"test site","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/synergyis.info\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/synergyis.info\/#\/schema\/person\/4c7cdeab222e50a5459749f1aec566f9","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/synergyis.info\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b47a8fdd7401532411852fc574d92abc14d533af38871ea4658975fe51d803f4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b47a8fdd7401532411852fc574d92abc14d533af38871ea4658975fe51d803f4?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/synergyis.info"],"url":"https:\/\/synergyis.info\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/synergyis.info\/index.php?rest_route=\/wp\/v2\/posts\/1","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/synergyis.info\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/synergyis.info\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/synergyis.info\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/synergyis.info\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1"}],"version-history":[{"count":0,"href":"https:\/\/synergyis.info\/index.php?rest_route=\/wp\/v2\/posts\/1\/revisions"}],"wp:attachment":[{"href":"https:\/\/synergyis.info\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/synergyis.info\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/synergyis.info\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}