IFSC コードを提供して銀行の詳細を取得する RazorPay の Web API を統合したいと考えています。
ASP.Net Core では問題なく動作するが、ASP.Net 4.7 では動作しないコードがあります。
ASP.Net コア コード:
using (var httpClient = new HttpClient())
{
using (var response = await httpClient.GetAsync($"https://ifsc.razorpay.com/{ifsc}"))
{
string apiResponse = await response.Content.ReadAsStringAsync();
bank = JsonConvert.DeserializeObject<BankModel>(apiResponse);
}
}
}
エラーが発生しResponse.Content
ています。同じためのasp.net関連コードにアドバイスしてください。