我是Windows應用程序開發新手。我試圖消耗與移動服務客戶端服務API與下面的代碼如何使用Xamarin表單中的applicationKey使用service api?
MobileServiceClient mSClient;
mSClient = new MobileServiceClient("https://*******.azure-mobile.net/", "UFakeKkrayuAeVnosdfghrwvnhdfVAcjYziYFSFHUV89");
Dictionary<string, string> userobj = new Dictionary<string, string>();
userobj.Add("UserName", "username");
userobj.Add("Password", "password");
userobj.Add("DeviceUID", "010092780200134E0300215F0400CC37050083D807006B9B080066010900267F");
userobj.Add("DeviceToken", "device_123");
userobj.Add("OSVersion", "WindowsPhone");
userobj.Add("AppVersion", "2.0");
userobj.Add("DeviceModel", "Windows phone");
userobj.Add("DeviceTypeID", "1");
userobj.Add("DeviceAlertsOn","true");
var responce = mSClient.InvokeApiAsync("user/loguserin", HttpMethod.Post, userobj);
塊,但我沒有得到正確的響應:
誰能幫助我?
謝謝, Srinivas。
你調用一個異步方法 – Jason
添加到傑森和壽司時需要用到等待,當你不不用等待,你的響應將包含任務對象。您可以訪問來自'responce'對象的狀態和錯誤。你稍後可以'等待響應'來運行它。這對更多的調試很有幫助 –
感謝Neville,你能否給我一些合適的代碼塊來得到回覆 –