add clear
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user