东时方短信平台短信接口怎么用啊
东时方短信平台(www.woxp.cn)适用于大中小型企业、商场、酒店等,面向企事业单位开发的短信收发系统。主要提供短信网关,短信接口, 网站接口以及OA、CRM、ERP、等系统及B2B大型网站平台使用。接入方式可灵活使用,24小时发送,多条通道备用。保证客户短信的下发速度和质量。短信接口:
http://gateway.woxp.cn:6630/utf8/web_api/?x_eid=10685&x_uid=shuiguo&x_pwd_md5=96e79218965eb72c92a549dd5a330112&x_ac=10&x_gate_id=300&x_target_no=13911520123&x_memo=323223
注释:
http://gateway.woxp.cn:6630/gb2312/web_api/?
x_eid=企业ID&x_uid=账号&x_pwd_md5=登陆密码MD5值&x_ac=10&x_gate_id=300&x_target_no=手机号码&x_memo=短信内容
在这里 www.woxp.cn 注册个账号 配置下上面的信息就可以了,有不明白的可以联系我
----------------------------------------------------------------------------------
<?php
function Get($url)
{
if(function_exists('file_get_contents'))
{
$file_contents = file_get_contents($url);
}
else
{
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
}
return $file_contents;
}
$aa="http://gateway.woxp.cn:6630/utf8/web_api/?x_eid=10685&x_uid=shuiguo&x_pwd_md5=96e79218965eb72c92a549dd5a330112&x_ac=10&x_gate_id=300&x_target_no=15011520934&x_memo=323223";
echo Get($aa);
?>
页:
[1]