Questions tagged [azure-mobile-services]

Windows Azure Mobile Apps provides a turnkey backend solution to power your mobile app by allowing you to easily add structured storage, user authentication and push notifications to your iOS, Android, Cordova, Windows (UWP) and Windows Phone (8.1) apps.

Welcome to the Azure Mobile Apps tag!

Azure Mobile Apps is the successor to Azure Mobile Services and still makes it easy to add offline data query using Azure cloud databases to your Android, iOS, Xamarin, UWP (Windows Store) and WPF applications.

To submit bugs or do feature requests, file an issue on GitHub.

Both the Client SDKs (iOS Native, Android Native, .NET, Xamarin and Cordova) and Server SDKs (for ASP.NET and Node.js) are available in the https://github.com/azure organization. Look for azure-mobile-apps

Azure Mobile Services is no longer available.

2729 questions
31
votes
5 answers

Azure Custom Controller / API .Net backend

I have had a MobileService running on Azure, and have decided to create a new service and migrate the code myself. The new service is of the new type called: Azure Mobile App Service. Currently I have Authentication working, and can do…
JTIM
  • 2,774
  • 1
  • 34
  • 74
25
votes
3 answers

Difference between azure notification hub and azure mobile services

What are the main differences between azure notification hub and mobile services Which is best to use when. Thanks
Rusty
  • 1,303
  • 2
  • 14
  • 28
20
votes
2 answers

Azure Mobile Services: no data tab

I am trying to create a simple table in Azure Mobile Services so that my c# Windows Phone App can utilize a high score table. However, though it appears in every example I find online, there is no "Data" tab inside my mobile service I created on…
user3448699
  • 203
  • 2
  • 5
18
votes
2 answers

Google login error via Azure

In my app I want to use Google login, so for that I am using Azure Services. From Google, I am able to login successfully and get all the details but the following error occurs on the Azure side: Error…
Sonali Pawar
  • 420
  • 3
  • 18
18
votes
5 answers

Uploading a file in Azure File Storage using node.js

We are trying create an webservice to upload files to Azure file storage using node.js service. Below is the node.js server code. exports.post = function(request, response){ var shareName = request.headers.sharename; var dirPath =…
16
votes
2 answers

Why is Entity Framework generating the following nested SQL for Azure Mobile Services Table Controllers

I'm trying to get to the bottom of an entity Framework issue when using it with a TableController I've created the following setup. The basic TodoItem example provided with a new Mobile Web API which leverages EntityFramework, TableController & the…
Eoin Campbell
  • 43,500
  • 17
  • 101
  • 157
16
votes
3 answers

Cordova Content Security Policy

I have a Cordova app and after upgrading (5.0.0) it I'm unable to call any resource at all. I've added the whitelist plugin and added the following tag to index.html
Larsi
  • 4,654
  • 7
  • 46
  • 75
16
votes
1 answer

Adding paths to RequireJS configuration on runtime

Ok, I already know that you should configure paths with RequireJS like this require.config({ paths: { name: 'value' } }); And call it like this. require(['name'], function() { /* loaded */ }); But the thing is, I'm working in…
Jani Hyytiäinen
  • 5,293
  • 36
  • 45
15
votes
5 answers

azure notification hub tag limits

reading the pricing details http://azure.microsoft.com/en-us/pricing/details/notification-hubs/ there seems to be a limit of number of tags used in a push. Broadcast (tag size) Limited to 10K Limited to 10K Unlimited # of tags (broadcast…
lpic
  • 560
  • 1
  • 7
  • 20
15
votes
4 answers

Logout/invalidate a JWT

I'm using custom authentication in Azure Mobile Services by generating a JWT (JSON Web Token) in a custom login API. Once a user has a JWT, it's valid until its encoded expiry time is reached. Beyond explicitly checking the JWT token against a…
Steve
  • 8,066
  • 11
  • 70
  • 112
13
votes
2 answers

Can you mix Azure Mobile Services with Azure Cloud Services?

I am investigating Azure (ie. beginner). Mobile Services by itself will not work for my mobile app needs (data access is too simplistic). My question is can you mix Mobile Services and Cloud Services such that they both access the same…
Joel
  • 15,654
  • 5
  • 37
  • 60
12
votes
2 answers

azure mobile app authentication external redirect url

I have created Azure Mobile App and I am following official docs for this. During Authentication part of the docs following is stated In the Allowed External Redirect URLs, enter url_scheme_of_your_app://easyauth.callback. The…
Muhammad Touseef
  • 4,357
  • 4
  • 31
  • 75
12
votes
7 answers

Developing with Azure Mobile Services?

What is currently the "best" way to develop a back-end system in Azure Mobile Services? Specifically, what tools are available? From what I've seen, most examples just go to the Management portal and manually add a few lines into the script window.…
Glen Little
  • 6,951
  • 4
  • 46
  • 68
11
votes
2 answers

Why does Navigation.PushAsync crash after Azure MobileServiceClient LoginAsync()?

Edit: Sample project that demonstrates crash can be found here: https://github.com/rringham/brokenazurexamforms - you need to set your own Azure App Service URL…
Rob
  • 25,984
  • 32
  • 109
  • 155
11
votes
2 answers

Cannot create more than one clustered index on table

I am having the following error after typing update-database: Cannot create more than one clustered index on table 'dbo.AppUsers'. Drop the existing clustered index 'PK_dbo.AppUsers' before creating another. I am working on an Azure mobile…
1
2 3
99 100