Files
kiri-wchat/wchat/officialaccount/Tag.php
T
as2252258@163.com 291e882069 add clear
2020-03-05 12:41:49 +08:00

31 lines
549 B
PHP

<?php
namespace wchat\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();
}
}