Files
kiri-wchat/officialaccount/Tag.php
T

31 lines
543 B
PHP
Raw Normal View History

2019-11-11 18:14:47 +08:00
<?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();
}
}