I want to integrate web api of RazorPay by which I will get the bank details by providing the IFSC code.
I have a code which works fine in ASP.Net Core but not working in ASP.Net 4.7.
ASP.Net core code:
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);
}
}
}
in Response.Content
I am getting an error. Please advise, asp.net relevant code for the same.