From 56dd7413aa26fad0476ac3aff91aa1dd83179a9c Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Mon, 22 Oct 2018 13:15:34 +0000 Subject: [PATCH] #1982 @0.5 --- inc/ws/Controlleur/class.ws.services.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/inc/ws/Controlleur/class.ws.services.php b/inc/ws/Controlleur/class.ws.services.php index 46f09764d..77106e171 100644 --- a/inc/ws/Controlleur/class.ws.services.php +++ b/inc/ws/Controlleur/class.ws.services.php @@ -1300,6 +1300,18 @@ class wsServices extends cubeFlashGateway } } + public function proxypinterest() + { + $this->outputXML = false; + + header('Content-type: application/rss+xml'); + $url = 'https://www.pinterest.com/' . urlencode($this->args['url']); + ob_end_clean(); + $c = file_get_contents($url); + echo $c; + exit; + } + public static function _subscribeAvery() { $api = new CubeIT_Services_Mailchimp('5d00b7e601cf1948cb95de06630878ae-us19'); -- 2.39.5