Hello everyone
I have an issue
I have a backend in azure, I did a little console application to test it out
using AzureTest;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Net.Http;
const string Url = "http://xamxontacts.azurewebsites.net/tables/contact?ZUMO-API-VERSION=2.0.0";
using (HttpClient client = new HttpClient()) {
var request = await client.GetAsync(Url);
if (request.IsSuccessStatusCode) {
var content = await request.Content.ReadAsStringAsync();
var res = JsonConvert.DeserializeObject<List<Contacts.Contact>>(content);
foreach (var item in res) {
Console.WriteLine(item.name);
}
}
}
but when I go to my Xamarin app, I cannot retrieve anything or post or update or do anything
this is the URL I am trying toi do crud operation on
