WeChat カスタマー サービス インターフェイスを利用して、さまざまなメッセージを無制限に大量送信できます
- ? /*
- 著者:yf
- 使用手順: WeChat パブリック アカウントのワイヤレス グループ送信インターフェイス、使用例:
- $test = new SendAllMsg("your appId", "your appSecret");
- $test->sendMsgToAll(); // 一括送信メソッドを呼び出します
- 注: 1. 使用条件: 認証番号またはテスト番号
- 2. 一括メッセージのコンテンツは、グラフィック、テキスト、音楽などです。 $dataの具体的な内容については、WeChat開発ドキュメント/カスタマーサービスインターフェースを参照してください
- 3. ユーザー数が10,000を超える場合、getUserInfo()を変更する必要があります。詳細については、開発ドキュメント/フォロワーリストの取得を参照してください。
-
- 初心者の方はアドバイスをお願いします。よろしくお願いします
- */
- Interface iSendAllMsg{
- function getData($url) //curl は get リクエストを送信します
- function postData($url,$data); // curl は投稿リクエストを送信します
- function getAccessToken(); //このメソッドは、access_token を取得するために構築メソッドで呼び出されています。wx サーバー上の保存時間は 7200 秒であることに注意してください
- function sendMsgToAll(); // グループ メッセージング メソッド送信されるメッセージ $データは自分で変更できます
- }
- class SendAllMsgimplements iSendAllMsg{
- private $appId;
- private $access_token ;
- //
- public function __construct($appId, $appSecret) {
- $this ->appId = $appId;
- $this->appSecret = $appSecret;
- $this->access_token = $this-> ;getAccessToken();
- }
- //
- function getData($url){
- $ch =カール_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_USERAGENT, ' Mozilla/5.0 (互換性; MSIE 5.01; Windows NT 5.0)');
- curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
- curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false);
- $data =curl_exec($ch);
- curl_close($ch);
- return $data;
- }
- //
- function postData($url,$data){
- $ch =curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "POST");
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST , FALSE );
- curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (互換性あり; MSIE) 5.01 ; Windows NT 5.0)');
- curl_setopt($ch、CURLOPT_FOLLOWLOCATION、1);
- curl_setopt($ch、CURLOPT_AUTOREFERER、1);
- curl_setopt($ch、CURLOPT_POSTFIELDS、$data);
- curl_setopt($ch、CURLOPT_RETURNTRANSFER) 、 true);
- $tmpInfo =curl_exec($ch);
- if (curl_errno($ch)) {
- returncurl_error($ch);
- }
- curl_close($ch);
- return $tmpInfo;
- }
- //
- function getAccessToken(){
- $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type= client_credential&appid=".$this->appId."&secret=".$this- >appSecret;
- $res = $this->getData($url);
- $jres = json_decode($res,true);
- $access_token = $jres['access_token'];
- return $access_token;
- }
- //
- プライベート関数 getUserInfo(){
- $url = "https://api.weixin.qq.com/cgi-bin/ user/get?access_token=".$this->access_token;
- $res = $this->getData($url);
- $jres = json_decode($res,true);
- //print_r($jres) ;
- $userInfoList = $jres['data']['openid'];
- return $userInfoList;
- }
- function sendMsgToAll(){
- $userInfoList = $this->getUserInfo();
- $url = "https://api.weixin.qq.com/cgi-bin/message/custom/ send?access_token=".$this->access_token;
- foreach($userInfoList as $val){
- $data = '{
- " touser":"'.$val.'",
- "msgtype":"text ",
- "text":
- {
- "content":"お手数ですがテストしてください"
- }
- }';
- $this ->postData($url,$data);
- }
- }
- }
- $test = new SendAllMsg("YOURappId","YOURappSecret");
- $test->sendMsgToall();
-
- ?>
-
コードをコピー
|