Why can't I post from my Xamarin Frorms app to my .net core web api
问题 I have a post method that sends json to my api. My endpoint works in postman so my problem is in my xamarin post request: async void RegisterUser(object sender, System.EventArgs e) { string URL = "http://blablahblah:51001/register"; HttpClient client = new HttpClient(); var model = new RegisterViewModel { Email = EntryEmail.Text, FirstName = FirstName.Text, LastName = LastName.Text, Password = EntryPasswrd.Text }; var content = JsonConvert.SerializeObject(model); await client.PostAsync(URL,