1

ClassicASPのPingdomRESTAPIを使用したいのですが、次のコードがあります:-

' setup the URL
baseUrl = "https://api.pingdom.com/api/2.0/checks"

' setup the request and authorization
Set http = Server.CreateObject("MSXML2.ServerXMLHTTP")
http.open "GET", baseUrl, False 
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.setRequestHeader "userpwd", "aaaaaaaaaaaaaaaaaaaaaaa:bbbbbbbbbbb"
http.setRequestHeader "App-Key", "ccccccccccccccccccccccccccccccc"

' send the HTTP data
http.send 

私にエラーを与えます:-

{"error":{"statuscode":401,"statusdesc":"Unauthorized","errormessage":"User credentials missing"}}

そのため、認証が正しく渡されておらず、リクエストヘッダーで渡されるべきではないように見えますが、どのように行われるべきかわかりません。

ありがとう

Alex K.に感謝し、他の人の利益のために、正しい構文は次のとおりです。-

' setup the URL
baseUrl = "https://api.pingdom.com/api/2.0/checks"

Response.Write fullUrl
' setup the request and authorization
Set http = Server.CreateObject("MSXML2.ServerXMLHTTP")
http.open "GET", baseUrl, False, "emailaddress", "password"
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.setRequestHeader "App-Key", "keykeykeykeykeykeykeykeykeykey"

' send the HTTP data
http.send 

:-)

4

1 に答える 1

2

https://api.pingdom.com/api/2.0/checks.openは基本認証を使用しているため、通話でクレデンシャルを渡す必要があります。

于 2012-01-17T13:45:47.293 に答える