本文整理汇总了PHP中Connector::_parseRecipient方法的典型用法代码示例。如果您正苦于以下问题:PHP Connector::_parseRecipient方法的具体用法?PHP Connector::_parseRecipient怎么用?PHP Connector::_parseRecipient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Connector
的用法示例。
在下文中一共展示了Connector::_parseRecipient方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: pushFile
/**
* Push a file.
*
* @param string $recipient Recipient. Can be device_iden, email or channel #tagname.
* @param string $filePath The path of the file to push.
* @param string $mimeType The MIME type of the file. If null, we'll try to guess it.
* @param string $title The title of the push notification.
* @param string $body The body of the push notification.
* @param string $altFileName Alternative file name to use instead of the original one.
* For example, you might want to push 'someFile.tmp' as 'image.jpg'.
*
* @return object Response.
* @throws ApiException
*/
public function pushFile($recipient, $filePath, $mimeType = null, $title = null, $body = null, $altFileName = null)
{
$data = array();
$fullFilePath = realpath($filePath);
if (!is_readable($fullFilePath)) {
throw new ApiException('File: File does not exist or is unreadable.');
}
if (filesize($fullFilePath) > 25 * 1024 * 1024) {
throw new ApiException('File: File size exceeds 25 MB.');
}
$data['file_name'] = $altFileName === null ? basename($fullFilePath) : $altFileName;
// Try to guess the MIME type if the argument is NULL
$data['file_type'] = $mimeType === null ? mime_content_type($fullFilePath) : $mimeType;
// Request authorization to upload the file
$response = $this->_curlRequest(self::URL_UPLOAD_REQUEST, 'GET', $data);
$data['file_url'] = $response->file_url;
if (version_compare(PHP_VERSION, '5.5.0', '>=')) {
$response->data->file = new \CURLFile($fullFilePath);
} else {
$response->data->file = '@' . $fullFilePath;
}
// Upload the file
$this->_curlRequest($response->upload_url, 'POST', $response->data, false, false);
Connector::_parseRecipient($recipient, $data);
$data['type'] = 'file';
$data['title'] = $title;
$data['body'] = $body;
return $this->_curlRequest(self::URL_PUSHES, 'POST', $data);
}