大家都知道飞信是可以免费发送短信的,但是飞信又没有官方的接口,所以无法借用移动的官方接口实现短信的免费发送,但是还是有一些破解的接口可以使用的。
提交格式
http://66.zzuobiao.sinaapp.com/get.php?tel=手机号&pwd=密码&aim=对方号码&text=短信内容
return 当前状态 多余内容为中国移动返回 可以忽略,若没有返回内容或者未返回发送成功,则表示发送失败
请在发送前确保对方已为飞信好友
http://66.zzuobiao.sinaapp.com/post.php
参数同GET方法:tel=手机号&pwd=密码&aim=对方号码&text=短信内容
请在发送前确保对方已为飞信好友
<?php header("Content-type: text/html; charset=utf-8"); //GET方法 $ch = curl_init("http://66.zzuobiao.sinaapp.com/post.php?tel=手机号&pwd=密码&aim=目标手机号&text=短信内容") ; curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 获取数据返回 curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ; // 在启用 CURLOPT_RETURNTRANSFER 时候将获取数据返回 echo $output = curl_exec($ch) ; echo $output; //POST方法 $url = 'http://66.zzuobiao.sinaapp.com/post.php/' ; $fields = array( 'tel'=>'' , 'pwd'=>'' , 'aim'=>'', 'text'=>'27' , ); //$post_data = implode('&',$fields); //open connection $ch = curl_init() ; //set the url, number of POST vars, POST data curl_setopt($ch, CURLOPT_URL,$url) ; curl_setopt($ch, CURLOPT_POST,count($fields)) ; // 启用时会发送一个常规的POST请求,类型为:application/x-www-form-urlencoded,就像表单提交的一样。 curl_setopt($ch, CURLOPT_POSTFIELDS,$fields); // 在HTTP中的“POST”操作。如果要传送一个文件,需要一个@开头的文件名 ob_start(); curl_exec($ch); $result = ob_get_contents() ; ob_end_clean(); echo $result; //close connection curl_close($ch) ; ?>
原文地址:http://blog.csdn.net/rememberautumn/article/details/41320705