亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

只能利用VBS發送短信

發布時間:2021-09-29 18:15:20 來源:億速云 閱讀:235 作者:小新 欄目:開發技術

這篇文章主要介紹了只能利用VBS發送短信,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

代碼如下:

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

感謝你能夠認真閱讀完這篇文章,希望小編分享的“只能利用VBS發送短信”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vbs
AI

德令哈市| 福州市| 尤溪县| 勐海县| 建水县| 崇阳县| 垫江县| 宜丰县| 青河县| 安吉县| 基隆市| 海安县| 龙川县| 博乐市| 平乡县| 金坛市| 寻乌县| 周口市| 阳江市| 灵宝市| 横峰县| 绍兴县| 达拉特旗| 开化县| 抚顺市| 浦江县| 介休市| 定日县| 湟源县| 泗水县| 太和县| 措美县| 额尔古纳市| 五家渠市| 信宜市| 宣武区| 北海市| 晋州市| 汪清县| 应城市| 荃湾区|