0
私はC#経由でAPIを呼び出そうとしていますが、私の文字列がURIではないというエラーが発生します。APIコールC#(CsCart)
string url = "@http://[email protected]:[email protected]/api.php?_d=products&ajax_custom=1";
WebRequest webRequest = WebRequest.Create(url);
WebResponse webResp = webRequest.GetResponse();
return webResp.ToString();
私も...
文字列? @ *を文字列の前に置く場所に逐語的な文字列を使用することを意味しましたか? – itsme86