<%
dim client_id:client_id="" ‘ 应用的API Key;
dim client_secret:client_secret="" ‘ 应用的Secret Key;
dim post_data:post_data="{""text"": ""2019诺思星快手电商班精华浓缩版VIP教程(5)""}"
response.write access_token
response.write post_content
‘ 获取返回数据
function post_content()
dim api_url:api_url = "https://aip.baidubce.com/rpc/2.0/nlp/v1/lexer"
dim json:json = post_https(api_url&"?charset=UTF-8&access_token="&access_token,post_data)
dim obj
set obj = parseJSON(json)
post_content = json
‘ 遍历解析JSON不会了 哈哈
set obj = Nothing
end function
‘ 获取access_token
function access_token()
dim access_token_url:access_token_url = "https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id="&client_id&"&client_secret="&client_secret&"" ‘ 组合获取access_token网址
dim obj
set obj = parseJSON(post_https(access_token_url,""))
access_token = obj.access_token
set obj = Nothing
end function
‘ 解析json
Dim scriptCtrl
Function parseJSON(str)
If Not IsObject(scriptCtrl) Then
Set scriptCtrl = Server.CreateObject("MSScriptControl.ScriptControl")
scriptCtrl.Language = "JScript"
scriptCtrl.AddCode "Array.prototype.get = function(x) { return this[x]; }; var result = null;"
End If
scriptCtrl.ExecuteStatement "result = " & str & ";"
Set parseJSON = scriptCtrl.CodeObject.result
End Function
‘ post获取数据函数
public function post_https(post_url,post_data)
dim https
set https = server.createobject("msxml2.xmlhttp")
with https
.open "post", post_url, false
.setrequestheader "content-type","application/json"
.send post_data
post_https = .responsebody
end with
post_https = bytestobstr(post_https,"UTF-8")
set https = nothing
end function
‘ 转换编码
function bytestobstr(body,cset)
dim objstream
set objstream = server.createobject("adodb.stream")
objstream.type = 1
objstream.mode =3
objstream.open
objstream.write body
objstream.position = 0
objstream.type = 2
objstream.charset = cset
bytestobstr = objstream.readtext
objstream.close
set objstream = nothing
end function
%>
相关文章
- 用ASP.NET Web API技术开发HTTP接口(一)
- 用ASP.NET Web API技术开发HTTP接口
- 如何通过Facebook的API获取用户信息:电商营销方向详解
- python 如何调用GPT系列的api接口,实现想要的功能
- 通过京东商品ID获取京东优惠券信息,京东优惠券信息接口,京东优惠券API接口,接口说明接入方案
- html 获取微信支付接口,h5外部浏览器跳转微信支付链接api接口免费代码
- Python爬虫获取custom-1688自定义API操作接口
- 如何申请api接口,获取数据源
- PHP 获取微视无水印源地址_小红书无水印视频解析下载|小红书在线去水印|小红书视频解析API接口...
- 驾驶证 OCR 识别 API 接口用Java如何调用