azure-mobile-services

Azure Mobile app - QuickStart trouble

跟風遠走 提交于 2019-12-10 16:05:19
问题 I've downloaded Xamarin.Forms QuickStart Projects(server and cliente) from azure mobile app, then have published server project, so far so good, but i cannot access table controllers, unless i add query string as described. http://myservice.azurewebsites.net/tables/todoitem?ZUMO-API-VERSION=2.0.0 or if i add ms_skipversioncheck to true in the portal. Probably something related with server or client versions discrepance. Even if i update all nuget packages, same thing, just receive BadRequest

Azure Mobile Service and Azure Web App authentication

孤人 提交于 2019-12-10 14:12:26
问题 I get two different SID for the same user when the user is logging in through a Azure Web App (ASP.NET MVC) and Xamarin.iOS app Setup Azure WebApp ASP.NET 5 with API Controllers Xamarin iOS App with Microsoft.WindowsAzure.Mobile.Client SDK Azure B2C AAD User on Web I get the ObjectIdentifier value that is the AAD SID: var userClaim = ClaimsPrincipal.Current.FindFirst("http://schemas.microsoft.com/identity/claims/objectidentifier").Value; User on Mobile I get only a Nameidentifier value and no

Why doesn't traffic using Xamarin's monotouch implementation of MobileServiceClient show up in Fidder/Charles

≡放荡痞女 提交于 2019-12-10 13:46:55
问题 This is probably the same question as: HTTP Traffic monitoring issue when using MonoTouch, HttpClient and Charles Proxy But I thought I would ask it from a Windows Azure Mobile Services Client perspective. When I configure my iOS device to point at either fiddler (on my windows box) or charles (on my mac) I can see all traffic from a browser or from an Xamarin app that uses WebRequest. However if I use either Microsoft.WindowsAzure.MobileServices.MobileServiceClient (which uses HttpClient) or

Authenticating a PHP Web App with Azure Active Directory and Azure Mobile Services

若如初见. 提交于 2019-12-10 13:20:08
问题 I've got an existing mobile app that is integrated with Azure's mobile services. The mobile services are currently connected to Azure Active Directory with MFA enabled. I'm attempting to build a separate PHP-based web application that uses this existing mobile service and authentication. Authentication The only active directory of users is the cloud-based AAD. There is no local version and no office 365. After doing a lot of research, it appears PHP can integrate using SAML. However, there

Multiplatform MBaas similar to CloudKit?

我的梦境 提交于 2019-12-10 12:44:00
问题 I need to implement my CloudKit based app in Android too. Which MBaas has the most similar architecture like CloudKit? I need these features: cascade deletes able to track insert / update / delete changes in tables up from a date represented with a token asset management cursor based record fetching / paging, skip scalable (no join like operation need / should be possible) able to get push notification about changes reasonable pricing for startups cloud based no server side logic don't offer

Entity CodeFirst EF6, EntityData string id

孤者浪人 提交于 2019-12-10 10:25:13
问题 Have started to use Entity Code First with Azure Mobile Services and have met some issue: For using TableController with Entity objects I need to derive each of them from EntityData class, that provide string Id field! I used to use int, long and even guid instead string for id, so... What is benefits of this? What about insert operation and what is the best practice for this? What about performance for string id? 回答1: @carlosfigueira has a good writeup about the change to using string id

Azure Mobile Service TableController not returning inner objects

五迷三道 提交于 2019-12-10 08:24:46
问题 I am creating a basic (my first) Azure Mobile Service with Table Storage to control a simple Events app. My DataObjects consists of 2 object types: Coordinator and Event , I want Coordinators to be a separate table to store specific info that I don't want it denormalized inside the Events, but Events also has a inner object Location to store details for the event's location, but that I want to store denormalized as I don't want to maintain this details separately from the Event. Here the

How do you securely access Windows Azure Mobile Services with Javascript in a web app?

谁说胖子不能爱 提交于 2019-12-09 18:58:26
问题 I need a primer web/javascript security. According to How to use an HTML/JavaScript client for Windows Azure Mobile Services, in javascript on the client side, after including a link to MobileServices.Web-1.0.0.min.js you're supposed to create a client like this: var MobileServiceClient = WindowsAzure.MobileServiceClient; var client = new MobileServiceClient('AppUrl', 'AppKey'); which means including my AppKey in the javascript on the page. Should I be worried about the AppKey being public?

Why is there a string ID in the data model of Azure Mobile Apps?

依然范特西╮ 提交于 2019-12-09 15:08:36
问题 I'm working the C# in Azure Mobile Apps trying to learn them. I created the Model to link to my Azure SQL DB, created a DataObject like this: public class Account : EntityData { //public int id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string PhoneNumber { get; set; } public string Password { get; set; } public DateTime dtCreated { get; set; } public Guid oGuid { get; set; } } Notice that I commented out the public int id above; it was

Get user info like name, email Id etc from authentication token in .NET Backend Azure Mobile Service

回眸只為那壹抹淺笑 提交于 2019-12-09 00:49:57
问题 I am using Azure Mobile Service to add authentication to my Windows Store app. Following this article from Mobile Services documentation I am able to get the UserId as well as MobileServiceAuthenticationToken (both for Google as well as Microsoft Account) My question is how do I get user info like name, email Id etc. using MobileServiceAuthenticationToken in a .NET backend mobile service. I have gone through various articles explaining how this is done in Javascript Backend mobile service but