因此,在优先级rest-api的最新版本中,他们添加了一个称为“应用程序许可”的文件,并说您需要发送标头:X-App-Id,X-App-Key。所以我试图将其放在标题中,但这确实无法正常工作。我知道这个公园无法正常工作的原因是,这是工作正常的应用程序的一部分,但是我需要更新应用程序,这样才能正常工作。 这是在vb tring中将标题添加到可以使用的技巧中。
'geeting info
myParameters &= "url=" & Trim(Config.URL)
myParameters &= "&tabulaini=" & Trim(Config.TabulaINI)
myParameters &= "&language=" & Trim(Config.Language)
myParameters &= "&company=" & Trim(TheCompany)
myParameters &= "&username=" & Trim(Config.UserName)
myParameters &= "&password=" & Trim(Config.Password)
myParameters &= "&form=" & Trim(TheForm)
myParameters &= "&doc=" & Trim(TheDoc)
myParameters &= "&folder=" & Replace(Replace(Trim(Config.InFolder), "\", "/"), " ", "%20")
myParameters &= "&file=" & Replace(Trim(NetFile), " ", "%20")
'web request to the api
Dim s As HttpWebRequest
Dim enc As UTF8Encoding
Dim postdata As String
Dim postdatabytes As Byte()
s = HttpWebRequest.Create("http://localhost:9876")
'add the connection information the header
s.Headers.Add("X-App-Id", "id")
s.Headers.Add("X-App-Key", "CODE")
答案 0 :(得分:1)
appID和appKey应该是配置对象中参数的一部分。
这里是[Web-SDK](https://prioritysoftware.github.io/api/global/#login)相应部分的链接。