I want to consume REST Api in my Xamarin Project. Which is the best library for consuming REST API in .NET Standard Xamarin Project? Till now i had used http client but it had some issues like configuring the proxy settings when on proxy server. I also had used modernhttpclient but it only supports PCL projects. modernhttpclient-update had a support for .net standard but it had conflicts with modernhttpclient which i installed previously. I also tried removing modernhttpclient but that doesn't work and it suggested me to use a strong type name!! Any suggestions?
Answers
Try Refit :https://blog.verslu.is/xamarin/xamarin-forms-xamarin/less-repetitive-code-to-reach-rest-apis-for-your-xamarin-forms-app-with-refit/
Will try!! Thanks