buildApiUrl() public static method

Appends resource url to base pinterest url.
public static buildApiUrl ( string $resourceUrl ) : string
$resourceUrl string
return string
Example #1
0
 /**
  * Executes request to Pinterest API.
  *
  * @param string $resourceUrl
  * @param string $postString
  *
  * @return string
  */
 public function exec($resourceUrl, $postString = '')
 {
     $url = UrlBuilder::buildApiUrl($resourceUrl);
     $headers = $this->getHttpHeaders();
     $postString = $this->filePathToUpload ? $this->postFileData : $postString;
     $result = $this->httpClient->execute($url, $postString, $headers);
     $this->filePathToUpload = null;
     return $result;
 }