婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > 利用VBS發送短信的實現代碼(通過飛信)

利用VBS發送短信的實現代碼(通過飛信)

熱門標簽:陜西高頻外呼回撥系統哪家好 加盟電銷機器人好的品牌 海外美發店地圖標注 辦理膠州400電話財稅 百度地圖標注怎么卸載 外呼營銷下單系統 打電話的外呼系統貴不貴 前鋒辦理400電話申請 新密防封卡外呼系統違法嗎
光看標題就已經覺得很牛逼了,聽說過可以用 PHP 發送短信(飛信),也使用過 Python 實現的 PyFetion 發送過短信(飛信)。我也看過對應的 PHP 和 Python 源碼,實現起來還是比較復雜的,難道可以用 VBS 來實現?

看到代碼后更覺得牛逼,竟然是使用 10086.cn (移動官網)上面的接口來實現的,飛信官方難道已經公布飛信接口了?若不是,難道是代碼的作者自己發現的接口?那也太強大了!Google 了一下才發現,哦,都不是,而是 WAP 飛信。像我這種還在用著 2005 年生產的只能打電話發短信的手機的生活在石器時代的人,當然不知道 WAP 飛信的存在。我現在連短信都很少發,更不用說飛信了,我已經不記得上一次登陸飛信是什么時候。
復制代碼 代碼如下:

m = "xxxyyyyzzzz" '手機號碼
pass = "12345678" '登陸密碼
msg = "Hello world" '飛信內容
Const online = 1 '在線
Const busy = 2 '忙碌
Const away = 3 '離開
Const hidden = 4 '隱身
Dim http
Set http = CreateObject("Msxml2.XMLHTTP")
http.open "POST", "http://f.10086.cn/im/login/inputpasssubmit1.action", False
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.send "m=" m "pass=" pass "loginstatus=" hidden '隱身登陸
wml = http.responseText
If InStr(wml, "密碼輸入錯誤") Then
WScript.Echo "對不起,密碼輸入錯誤,請重新輸入!"
WScript.Quit '登陸失敗,退出程序
End If
http.open "POST", "http://f.10086.cn/im/user/sendMsgToMyselfs.action", False
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.send "msg=" msg '給自己的手機發短信
wml = http.responseText
If InStr(wml, "發送成功") Then WScript.Echo "發送成功"
http.open "GET", "http://f.10086.cn/im/index/logoutsubmit.action", False
http.send '注銷登陸

這里只是一個示例,至于怎么給別人發短信和飛信,自己琢磨吧。本來想寫一個像 PyFetion 那樣的 VbsFetion 的,但是想想沒什么意義,這樣還不如直接裝個飛信 PC 客戶端,于是就不折騰的,喜歡折騰的同學可以繼續。
上面的程序可以很輕松地改寫成其他語言,C、C++、C#、Java、JavaScript、Python、Perl、Ruby、Lua、PHP……用這個接口可以做很多有趣的事情,不是嗎?

VBS短信飛信發送類(VBSFetion)

本來想把昨天《用VBS發送短信(飛信)》里的 VBS 程序改寫成 PHP 的,不過為了不重復造輪子,事先 Google 了一下,發現已經有人實現了,詳見PHP飛信發送類(PHPFetion)v1.2發布。好吧,既然已經有人把它封裝成 PHP 類了,我就封裝一個 VBS 類吧。
復制代碼 代碼如下:

Class VBSFetion
Private [$mobile], [$password], http
'Author: Demon
'Website: http://demon.tw
'Date: 2011/6/11
'初始化事件
Private Sub Class_Initialize
Set http = CreateObject("Msxml2.XMLHTTP")
End Sub
'結束事件
Private Sub Class_Terminate
Call Logout()
Set http = Nothing
End Sub
'初始化函數
'mobile 手機號
'password 登陸密碼
Public Function Init(mobile, password)
[$mobile] = mobile
[$password] = password
str = Login()
If InStr(str, "密碼輸入錯誤") Then
Init = False
Else
Init = True
End If
End Function
'發送飛信
'mobile 對方手機號
'message 發送內容
Public Function SendMsg(mobile, message)
If message = "" Then Exit Function
If mobile = [$mobile] Then
Send = ToMyself(message)
Else
uid = GetUid(mobile)
If uid > -1 Then Send = ToUid(uid, message, False)
End If
End Function
'發送短信
'mobile 對方手機號
' 'message 發送內容
Public Function SendShortMsg(mobile, message)
If message = "" Then Exit Function
If mobile = [$mobile] Then
Send = ToMyself(message)
Else
uid = GetUid(mobile)
If uid > -1 Then Send = ToUid(uid, message, True)
End If
End Function
'登陸
Private Function Login()
url = "/im/login/inputpasssubmit1.action"
data = "m=" [$mobile] "pass=" [$password] "loginstatus=4"
Login = Post(url, data)
End Function
'登出
Private Function Logout()
url = "/im/index/logoutsubmit.action"
Logout = Post(url, "")
End Function
'給自己發飛信
Private Function ToMyself(message)
url = "/im/user/sendMsgToMyselfs.action"
message = "msg=" message
ToMyself = Post(url, message)
End Function
'給好友發送飛信(短信)
'uid 飛信ID
'message 飛信(短信)內容
'isshort True為短信,False為飛信
Private Function ToUid(uid, message, isshort)
If isshort Then
url = "/im/chat/sendShortMsg.action?touserid=" uid
data = "msg=" message
Else
url = "/im/chat/sendMsg.action?touserid=" uid
data = "msg=" message
End If
ToUid = Post(url, data)
End Function
'獲取飛信ID
'mobile 手機號
Private Function GetUid(mobile)
url = "/im/index/searchOtherInfoList.action"
data = "searchText=" mobile
str = Post(url, data)
Set re = New RegExp
re.Pattern = "/toinputMsg\.action\?touserid=(\d+)"
If re.Test(str) Then
Set ms = re.Execute(str)
GetUid = ms.Item(0).Submatches(0)
Else
GetUid = -1
End If
End Function
'發送HTTP POST請求
Private Function Post(url, data)
url = "http://f.10086.cn" url
http.open "POST", url, False
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.send data
Post = http.responseText
End Function
End Class
示例程序:
'初始對象
Set fetion = New VBSFetion
'登陸飛信
If fetion.Init("11122223333", "123456") Then
'發送飛信
fetion.SendMsg "44455556666", "Hello world"
'發送短信
fetion.SendShortMsg "77788889999", "Hello world"
End If

來源: http://demon.tw/my-work/vbsfetion.html
您可能感興趣的文章:
  • C#代碼實現短信驗證碼接口示例
  • C#怎么實現手機短信發送功能
  • java、php、C#、asp實現短信群發功能的方法
  • CDMA 貓用AT命令發中文短信(C#)
  • 基于JavaScript實現手機短信按鈕倒計時(超簡單)
  • php發送短信驗證碼完成注冊功能
  • Android發送短信功能代碼
  • Android Mms之:短信發送流程(圖文詳解)
  • android中可以通過兩種方式調用接口發送短信
  • WPF MVVM制作發送短信小按鈕

標簽:咸陽 伊春 四平 牡丹江 阜陽 梅州 武威 河南

巨人網絡通訊聲明:本文標題《利用VBS發送短信的實現代碼(通過飛信)》,本文關鍵詞  利用,VBS,發送,短信,的,實現,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《利用VBS發送短信的實現代碼(通過飛信)》相關的同類信息!
  • 本頁收集關于利用VBS發送短信的實現代碼(通過飛信)的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 濮阳县| 城口县| 旬阳县| 瓮安县| 乡城县| 满洲里市| 兴业县| 尉犁县| 达日县| 淳安县| 江城| 海丰县| 迁西县| 平潭县| 玛纳斯县| 两当县| 龙川县| 六枝特区| 新河县| 英德市| 隆昌县| 察隅县| 江城| 玛多县| 碌曲县| 安图县| 南充市| 金阳县| 乐业县| 金堂县| 古丈县| 怀安县| 西林县| 屏东市| 临泽县| 开封市| 邯郸市| 遂平县| 乌审旗| 界首市| 曲麻莱县|