飛信免費郵件api,飛信介面

2021-09-07 00:19:05 字數 1103 閱讀 1056

大家都知道飛信是能夠免費傳送簡訊的,可是飛信又沒有官方的介面,所以無法借用移動的官方介面實現簡訊的免費傳送,可是還是有一些破解的介面能夠使用的。

提交格式

return 當前狀態 多餘內容為中國移動返回 能夠忽略,若沒有返回內容或者未返回傳送成功,則表示傳送失敗

請在傳送前確保對方已為飛信好友

引數同get方法:tel=手機號&pwd=password&aim=對方號碼&text=簡訊內容

請在傳送前確保對方已為飛信好友

<?php

header("content-type: text/html; charset=utf-8");

//get方法

curl_setopt($ch, curlopt_returntransfer, true) ; // 獲取資料返回

curl_setopt($ch, curlopt_binarytransfer, true) ; // 在啟用 curlopt_returntransfer 時候將獲取資料返回

echo $output = curl_exec($ch) ;

echo $output;

//post方法

$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_postfields,$fields); // 在http中的「post」操作。假設要傳送乙個檔案。須要乙個@開頭的檔名稱 ob_start(); curl_exec($ch); $result = ob_get_contents() ; ob_end_clean(); echo $result; //close connection curl_close($ch) ; ?>

飛信php介面 web service

code is far away from bug with the animal protecting 神獸保佑,無bug author 鄒顥 zouhao619 gmail.com2014 06 12 class fetion curl模擬http get請求 param string url ...

飛信webservice測試介面

移動飛信web傳送服務介面 移動飛信web服務介面 實現了通過web呼叫發飛信的目的,支援get提交及post表單提交,對介面使用者非常方便簡潔,幾分鐘時間就可以實現你的 整合飛信傳送功能,對沒有安裝飛信客戶端的機器也可以實現傳送,即 直接在ie位址列輸入傳送位址及引數就可以傳送,只要記得本 位址w...

web飛信 介面解析

最近想用飛信介面實現自動發簡訊 查了乙個原理飛信介面是不公開的 網上沒看到c 版本的 決定自己做乙個 能發簡訊的介面 目前看有 139郵箱 網頁版web飛信 客戶端飛信 還有手機 我選了web飛信 原因 先入為主 下面是得到的介面 飛信 介面解析 一 1 登陸 引數 username pwd onl...