Files
kiri-wchat/officialaccount/Tag.php
T
as2252258@163.com 7f138ef255 add clear
2019-11-11 18:14:47 +08:00

31 lines
543 B
PHP

<?php
namespace officialaccount;
class Tag extends AfficialAccount
{
private $generate_url = 'https://api.weixin.qq.com/cgi-bin/tags/create?access_token=';
/**
* @param $tagName
* @return mixed
* @throws \Exception
*/
public function generate($tagName)
{
$url['tag[name]'] = $tagName;
$config = $this->config->getAccessToken();
$result = $this->request->post($this->generate_url . $config, $url);
if (!$result->isResultsOK()) {
throw new \Exception($result->getMessage());
}
return $result->getData();
}
}