批处理之家's Archiver

老刘1号 发表于 2017-7-7 10:05

图灵API封装贴

[i=s] 本帖最后由 老刘1号 于 2017-7-29 16:26 编辑 [/i]

[url=https://code.csdn.net/qq_23693343/tuling-api_with_vbscript/tree/master]CSDN—Code[/url]
[color=Red][size=6]与图灵机器人畅聊吧~[/size][/color]
[img]http://odiyqfo1k.bkt.clouddn.com/o_1bm6n5rg532ubs4tv1t5v1792a.gif[/img]
使用[url=http://www.bathome.net/space.php?uid=75169]@Nsqs[/url]开发的Vbscript.Console框架
使用前先双击Console.EXE注册,建议将Console.EXE放到System32目录中注册
[color=Red]Chat_With_Turing_Robot.vbs[/color]源代码:[code]Rem 转载请注明老刘编写,谢谢合作。
Option Explicit
Public [发送内容],Console
Const API_Address = "http://www.tuling123.com/openapi/api"
Rem —————————————————设置区———————————————————
Const API_Key = "b9f823b5ae0144abb7b0cba774a0f5f8"
Rem 这是老刘的apikey,每天有5000次的使用次数,一般不用操心。
Rem 如果想要大批量使用,请自行前往tuling123.com注册帐号来更改。
Const [用户ID] = "Unknown" '无需更改,改一下也没关系~支持英文与数字混合组合。
Const [用户昵称] = "你"
Const [机器人昵称] = "图灵AI"
Const [首条自动发送] = True
Const [首条自动发送内容] = "你好"
Const [昵称颜色] = 10
Const [信息交互颜色] = 15
Const [提示颜色] = 12
Const [消息延时] = 100
Rem ————————————————设置区尾部——————————————————

Const [宿主] = "WSCRIPT.EXE" '强制固定宿主
If Not UCase(Right(WScript.FullName,11)) = UCase([宿主]) Then
        Dim Args,Arg
        For Each Arg in Wscript.Arguments
                Args=Args&Chr(&H20)&Chr(&H22)&Arg&Chr(&H22)
        Next
        CreateObject("Wscript.Shell").Run _
                [宿主]&Chr(&H20)&Chr(&H22)&WScript.ScriptFullName&Chr(&H22)&Args
        WScript.Quit
End If

Set Console = CreateObject("VBScript.Console")
With Console
        .ForeColor = [提示颜色]
        .WriteLine "按下Alt+Shift切换输入法~"
        If [首条自动发送] = True Then
                .ForeColor = [昵称颜色] : .WriteText [用户昵称] : .ForeColor = 11 : .WriteLine " 说:"
                .ForeColor = [信息交互颜色] : .WriteLine [首条自动发送内容]
                WScript.Sleep [消息延时]
                .ForeColor = [昵称颜色] : .WriteText [机器人昵称] : .ForeColor = 11 : .WriteLine " 说:"
                .ForeColor = [信息交互颜色] : [机器人交互] [首条自动发送内容]
        End If
        While Not [发送内容] = "退出"&VbNewLine
                .ForeColor = [昵称颜色] : .WriteText [用户昵称] : .ForeColor = 11 : .WriteLine " 说:"
                .ForeColor = [信息交互颜色] : [发送内容] = .ReadLine
                WScript.Sleep [消息延时]
                .ForeColor = [昵称颜色] : .WriteText [机器人昵称] : .ForeColor = 11 : .WriteLine " 说:"
                .ForeColor = [信息交互颜色] : [机器人交互] [发送内容]
        Wend
End With

Sub [机器人交互](strText) '发信息与返回信息处理的子程序
        Dim [Arr返回内容(JSON)],Re,[返回内容(文字)],[列指针]
        Set Re = New RegExp
        Re.Pattern = "http://"
        [Arr返回内容(JSON)] = Split(HTTP_POST(API_Address,"key="&API_Key&"&info="&strText&"&userid="&[用户ID]),Chr(&H22))
        With Console
                For [列指针] = 5 To UBound([Arr返回内容(JSON)]) Step 4
                        If re.Test([Arr返回内容(JSON)]([列指针])) = True Then
                                .WriteText [Arr返回内容(JSON)]([列指针])
                                .ForeColor = [提示颜色]
                                .WriteText "发现链接,是否打开?【按Y确认】"
                                If UCase(Chr(.ReadKey)) = "Y" Then CreateObject("Wscript.Shell").Run [Arr返回内容(JSON)]([列指针])
                                .ForeColor = [信息交互颜色]
                        Else
                                .WriteText [Arr返回内容(JSON)]([列指针])
                        End If
                Next
                .WriteLine
        End With
End Sub

Function HTTP_POST(Address,Args) 'HTTP-POST函数块
        With CreateObject("MSXML2.XMLHTTP")
                .Open "POST",Address, False
                .SetRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
                .Send Args
                HTTP_POST = .ResponseText
        End With
End Function[/code][attach]10733[/attach]
————————————————————————————————————————————————————
[color=Red]邮编查询.VBS[/color][code]Const API_Address = "http://www.tuling123.com/openapi/api"
Const API_Key = "b9f823b5ae0144abb7b0cba774a0f5f8"
'这是老刘的apikey,每天有5000次的使用次数,一般不用操心。
'如果想要大批量使用,请自行前往tuling123.com注册帐号来更改。

[城市名] = Inputbox("输入城市名:")
Msgbox Split(HTTP_POST(API_Address,"key="&API_Key&"&info="&[城市名]&Chr(&HB5C4)&Chr(&HD3CA)&Chr(&HB1E0)),"""")(5)

Function HTTP_POST(Address,Args)
        With CreateObject("MSXML2.XMLHTTP")
                .Open "POST",Address, False
                .SetRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
                .Send Args
                HTTP_POST = .ResponseText
        End With
End Function[/code][color=Red]快递查询.VBS[/color]
[attach]10728[/attach]
[attach]10729[/attach][code]Const API_Address = "http://www.tuling123.com/openapi/api"
Const API_Key = "b9f823b5ae0144abb7b0cba774a0f5f8"
'这是作者的apikey,每天有5000次的使用次数,一般不用操心。
'如果想要大批量使用,请自行前往tuling123.com注册帐号来更改。
Const Userid = "Unknown" '无需更改,改一下也没关系~

[快递号] = Inputbox("输入快递号:")
Msgbox Replace(Split(HTTP_POST(API_Address,"key="&API_Key&"&info="&Chr(&HB2E9)&Chr(&HD1AF)&Chr(&HBFEC)&Chr(&HB5DD)&[快递号]&"&userid="&Userid),"""")(5),"\n",VbNewLine)

Function HTTP_POST(Address,Args)
        With CreateObject("MSXML2.XMLHTTP")
                .Open "POST",Address, False
                .SetRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
                .Send Args
                HTTP_POST = .ResponseText
        End With
End Function[/code][color=Red]天气查询.VBS[/color]
[attach]10731[/attach][code]Const API_Address = "http://www.tuling123.com/openapi/api"
Const API_Key = "b9f823b5ae0144abb7b0cba774a0f5f8"
'这是作者的apikey,每天有5000次的使用次数,一般不用操心。
'如果想要大批量使用,请自行前往tuling123.com注册帐号来更改。
Const Userid = "Unknown" '无需更改,改一下也没关系~
Const [城市名] = "临河" '如果有同城的,握个手哈~

Msgbox Replace(Split(HTTP_POST(API_Address,"key="&API_Key&"&info="&[城市名]&Chr(&HCCEC)&Chr(&HC6F8)&"&userid="&Userid),"""")(5),";",VbNewLine),,_
[城市名]&"天气"

Function HTTP_POST(Address,Args)
        With CreateObject("MSXML2.XMLHTTP")
                .Open "POST",Address, False
                .SetRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
                .Send Args
                HTTP_POST = .ResponseText
        End With
End Function[/code][color=Red]笑话一则.VBS[/color]
[attach]10727[/attach][code]Const API_Address = "http://www.tuling123.com/openapi/api"
Const API_Key = "b9f823b5ae0144abb7b0cba774a0f5f8"
'这是老刘的apikey,每天有5000次的使用次数,一般不用操心。
'如果想要大批量使用,请自行前往tuling123.com注册帐号来更改。

Msgbox _
Split(HTTP_POST(API_Address,"key="&API_Key&"&info="&Chr(&HBDB2)&Chr(&HB8F6)&Chr(&HD0A6)&Chr(&HBBB0)),Chr(&H22))(5),, _
"笑话一则"

Function HTTP_POST(Address,Args)
        With CreateObject("MSXML2.XMLHTTP")
                .Open "POST",Address, False
                .SetRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
                .Send Args
                HTTP_POST = .ResponseText
        End With
End Function[/code][color=Red]小故事一则.vbs[/color]
[attach]10730[/attach][code]Const API_Address = "http://www.tuling123.com/openapi/api"
Const API_Key = "b9f823b5ae0144abb7b0cba774a0f5f8"
'这是老刘的apikey,每天有5000次的使用次数,一般不用操心。
'如果想要大批量使用,请自行前往tuling123.com注册帐号来更改。

Const [宿主] = "WSCRIPT.EXE"
If Not UCase(Right(WScript.FullName,11)) = UCase([宿主]) Then
        Dim Args,Arg
        For Each Arg in Wscript.Arguments
                Args=Args&Chr(&H20)&Chr(&H22)&Arg&Chr(&H22)
        Next
        CreateObject("Wscript.Shell").Run _
                [宿主]&Chr(&H20)&Chr(&H22)&WScript.ScriptFullName&Chr(&H22)&Args
        WScript.Quit
End If

Wscript.Echo _
Replace(Split(HTTP_POST(API_Address,"key="&API_Key&"&info="&Chr(&HBDB2)&Chr(&HB8F6)&Chr(&HB9CA)&Chr(&HCAC2)),"""")(5),"\n",VBNEWLINE)


Function HTTP_POST(Address,Args)
        With CreateObject("MSXML2.XMLHTTP")
                .Open "POST",Address, False
                .SetRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
                .Send Args
                HTTP_POST = .ResponseText
        End With
End Function[/code]

老刘1号 发表于 2017-7-7 10:14

[b]回复 [url=http://www.bathome.net/redirect.php?goto=findpost&pid=200973&ptid=44665]2#[/url] [i]523066680[/i] [/b]


    人家官网就用拼音,怪我咯~

523066680 发表于 2017-7-7 10:15

[b]回复 [url=http://bbs.bathome.net/redirect.php?goto=findpost&pid=200974&ptid=44665]3#[/url] [i]老刘1号[/i] [/b]


    这个官网肯定是刚起的名字而且有点急促…… 域名风格山寨了点

老刘1号 发表于 2017-7-7 10:17

[b]回复 [url=http://www.bathome.net/redirect.php?goto=findpost&pid=200975&ptid=44665]4#[/url] [i]523066680[/i] [/b]


    确实……
tuling就算了,还带123……
api免费好评

happy886rr 发表于 2017-7-7 11:53

为何不实现机器人对话,这个只能讲笑话,功能太少。

523066680 发表于 2017-7-7 12:03

[b]回复 [url=http://bbs.bathome.net/redirect.php?goto=findpost&pid=200980&ptid=44665]6#[/url] [i]happy886rr[/i] [/b]

很多种可能,
1. just beginning,细水长流
2. 抛砖引玉

happy886rr 发表于 2017-7-7 15:01

[b]回复 [url=http://www.bathome.net/redirect.php?goto=findpost&pid=200982&ptid=44665]7#[/url] [i]523066680[/i] [/b]
哈哈,有道理。静观其变。

老刘1号 发表于 2017-7-7 17:30

[b]回复 [url=http://www.bathome.net/redirect.php?goto=findpost&pid=200980&ptid=44665]6#[/url] [i]happy886rr[/i] [/b]


    慢慢来,不着急

happy886rr 发表于 2017-7-8 09:49

[b]回复 [url=http://www.bathome.net/redirect.php?goto=findpost&pid=201003&ptid=44665]9#[/url] [i]老刘1号[/i] [/b]
这个物流查询不错,实用性很强。

老刘1号 发表于 2017-7-8 12:29

[b]回复 [url=http://www.bathome.net/redirect.php?goto=findpost&pid=201054&ptid=44665]10#[/url] [i]happy886rr[/i] [/b]

感谢大佬支持,同时更新了天气查询
不知道注意到没

老刘1号 发表于 2017-7-11 14:05

本帖将不再更新。

skl1225 发表于 2017-7-11 15:00

牛逼了老刘

页: [1]

Powered by Discuz! Archiver 7.2  © 2001-2009 Comsenz Inc.