gpt4 book ai didi

http - 循环发送多个http post请求

转载 作者:可可西里 更新时间:2023-11-01 16:42:10 27 4
gpt4 key购买 nike

如何在请求头中进行请求循环?
我的数据库中存储了一整天的交易。
我的服务器会将所有这些值发送到另一台服务器以更新付款状态。

我的 VBScript 代码。

 do while not abc.eof sUrl = "https:/abc.com"

sRequest = "ID="&escape(a)&"&CODE="&escape(b)&"&NAME="&(strEncrypted)


HTTPPost sUrl, sRequest Function HTTPPost(sUrl, sRequest)
Set oHTTP=Server.CreateObject("Msxml2.ServerXMLHTTP.6.0")
oHTTP.setOption 2, 13056
oHTTP.open "POST", sUrl,false
oHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
oHTTP.setRequestHeader "Content-Length", Len(sRequest)
oHTTP.send sRequest
HTTPPost = oHTTP.responseText
End Function abc.movenext loop

最佳答案

函数 (...) 必须在 Do While (...) 之外

关于http - 循环发送多个http post请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29737832/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com