exec() public méthode

Executes request to Pinterest API.
public exec ( string $resourceUrl, string $postString = '' ) : string
$resourceUrl string
$postString string
Résultat string
 /**
  * @param $url
  * @param string $postString
  * @return $this
  */
 protected function execute($url, $postString = "")
 {
     $result = $this->request->exec($url, $postString);
     $this->processResult($result);
     return $this;
 }