【问题标题】:SMS Gateway Design Fast2SMS短信网关设计 Fast2SMS
【发布时间】:2017-01-03 07:31:31
【问题描述】:

朋友们我正在使用http://www.fast2sms.com 发送群发短信。但是现在我想向每个新订户发送欢迎短信和确认短信。我正在使用 WordPress 网站。 Fast2SMS 为我提供了一个 API:

http://api.fast2sms.com/sms.php?token=&mob=&mess=&sender=SONIIN&route=0

token=  Your UNIQUE TOKEN ID
mob= 10 Digit Indian Mobile Number
mess= 145 Character (English only)
sender= 6 Digit Sender ID
route=0- NonDND  &  1- DND

请告诉我如何使用它,如果可能的话,请告诉我如何在我的 WordPress 管理面板中构建它

【问题讨论】:

标签: php wordpress mobile sms sms-gateway


【解决方案1】:

这是接受一个获取请求所以...

$token = "1SDJGWEH";
$mob = "7855212520";
$msg = "HELLO";
$sender = "Hola";

$url = "http://api.fast2sms.com/sms.php?token=".$token."&mob=".$mob."&mess=".$msg."&sender=".$sender."&route=0";

$resp = file_get_contents($url);

print_r($resp);

这会起作用的......

要发出帖子请求,您需要使用CURL

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-11-09
    • 2013-06-09
    • 2011-11-11
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多