に接続しようとしたときに、私は次のコードを使用してセイバーAPIに接続しようとしています:私は次のエラーを取得していますがエラー(400)不正な要求セイバーAPI
Dim u As String = "https://developer.sabre.com/io-docs/call-api"
' Create the web request
request2 = DirectCast(WebRequest.Create(u), HttpWebRequest)
' Get response
response2 = DirectCast(request2.GetResponse(), HttpWebResponse)
' Get the response stream into a reader
reader2 = New StreamReader(response2.GetResponseStream())
' Console application output
' MsgBox(reader.ReadToEnd())
Response.Write(reader.ReadToEnd())
を:
Server Error in '/' Application.
The remote server returned an error: (400) Bad Request.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.WebException: The remote server returned an error: (400) Bad Request.
Source Error:
Line 49:
Line 50: ' Get response
Line 51: response2 = DirectCast(request2.GetResponse(), HttpWebResponse)
Line 52:
Line 53: ' Get the response stream into a reader
あなたは何を達成しようとしていますか?私がURL:https://developer.sabre.com/io-docs/call-apiに行くならば。 →「私はあなたのフォーム提出に問題がありました。」 – Wisdoom
私はapiを呼びたいと思うリンク私は私がapiのオンラインをテストするときに私に与えるリンクを使用 –
私も試みたと同じ結果を私はまだ同じ結果を変更私はちょうどそれがない私のコードのように –