APIの説明が記載されたpdfがあります。彼らの Web サービスにログインする必要があります。Web サービスは REST プロトコルに基づいています。この Web サービスにログインするには、次のような URL を呼び出す必要があります: http://api.webepartners.pl/wydawca/Authorize?login=test&password=pass
アカウントとパスワードがあります。test を置き換えてログインと psw に渡し、過去の URL を webbrowser に渡すと、問題ないように見えます。エラーは発生しません。しかし、C# でプログラム的に実行する必要があります。私が見つけたグーグルで: http://developer.yahoo.com/dotnet/howto-rest_cs.html
私はこのコードを試します:
Uri address = new Uri(@"http://api.webepartners.pl/wydawca/Authorize");
// Create the web request
HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;
// Set type to POST
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
// Create the data we want to send
//string appId = "YahooDemo";
//string context = "Italian sculptors and painters of the renaissance"
// + "favored the Virgin Mary for inspiration";
//string query = "madonna";
string userName = "mylogin";
string passsword = "mypassword";
StringBuilder data = new StringBuilder();
//data.Append("appid=" + HttpUtility.UrlEncode(appId));
//data.Append("&context=" + HttpUtility.UrlEncode(context));
//data.Append("&query=" + HttpUtility.UrlEncode(query));
data.Append("login=" + HttpUtility.UrlEncode(userName));
data.Append("&password=" + HttpUtility.UrlEncode(passsword));
// Create a byte array of the data we want to send
byte[] byteData = UTF8Encoding.UTF8.GetBytes(data.ToString());
// Set the content length in the request headers
request.ContentLength = byteData.Length;
// Write data
using (Stream postStream = request.GetRequestStream())
{
postStream.Write(byteData, 0, byteData.Length);
}
// Get response
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse) // error
{
// Get the response stream
StreamReader reader = new StreamReader(response.GetResponseStream());
}
そして、 (HttpWebResponse response = request.GetResponse() as ..
An exception of type 'System.Net.WebException' occurred in System.dll but was not handled in user code
Additional information: The remote server returned an error: (405) Method Not Allowed.
誰でも私を助けることができますか?
ありがとう