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); } } }
Source URL: https://www.techstackexperts.com/2020/05/complete-example-of-razorpay-api-to-get.html?showComment=1609738264273#c1227651246871561148
in Response.Content I am getting an error. Please advise, asp.net relevant code for the same.
Response.Content
2.1m questions
2.1m answers
60 comments
57.0k users