当前位置:  开发笔记 > 编程语言 > 正文

将过多的电话号码传递给网址失败 - 发送短信API

如何解决《将过多的电话号码传递给网址失败-发送短信API》经验,为你挑选了0个好方法。

我有一个应用程序正在构建并在其中实现一个短信API,但它发送到几个数字,当我从数据库中选择所有并发送时,它应该发送到大约1100个数字,但它什么也没做.

我发现它没有发送,因为数字被传递到url的长度,因为我回显了数字并将它们复制到之前发送的textarea中.

我也将数量减少到大约一百五十,但它没有抛出错误但没有发送,我该如何纠正这一点.

请参阅下面的发送示例代码

    $phone_group_total = $phone_numbers.", ".$send_it.", ".$selected_staffs;
     function httpRequest($fields, $sendpage){
     $curl = curl_init($sendpage);
     curl_setopt($curl, CURLOPT_POST, true);
     curl_setopt($curl, CURLOPT_POSTFIELDS, $fields);
     curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
     $result = curl_exec($curl);
     curl_close($curl);

    $sendpage ="http://smsexperience.com/components/com_spc/smsapi.php?";
    $sendsms ="username=user&password=pass";
    $sendsms .="&sender=$sender_id";
    $sendsms .="&recipient=".$phone_group_total; 
    $sendsms .="&message=$message";
    httpRequest($sendsms, $sendpage);

我为表单提交使用了get方法,我尝试使用post并且我的消息没有发送.如何修复它并发送到大量设置.谢谢.

推荐阅读
重庆制造漫画社
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有