azure-mobile-services

Implement Custom Authentication In Windows Azure Mobile Services

醉酒当歌 提交于 2019-12-17 18:43:59
问题 Windows Azure Mobile Services currently doesn't have an option for custom authentication and looking at the feature request http://feedback.azure.com/forums/216254-mobile-services/suggestions/3313778-custom-user-auth It isn't coming anytime soon. With a .NET backend and a .NET application how do you implement custom authentication, so that you don't have to use Facebook, Google or any of their other current providers? There are plenty of partially completed tutorials on how this this is done

azure notification hub tag limits

為{幸葍}努か 提交于 2019-12-17 15:58:29
问题 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 groups) Limited to 3K Limited to 3K 3 Unlimited Q1. so does that mean max tags per push is 10K? assuming that there is only 1 tag per device. Q2. is the number of tags stored unlimited? essential i need to map a tag to device id. And then send a bunch of tags

Data Flow for Azure Backend on Native Android Apps

只谈情不闲聊 提交于 2019-12-14 03:34:12
问题 We are looking at using Azure for the backend for our native Android application. The application will have user accounts along with product information and order history information. The idea is to manage the user, product, and order information in the Azure backend. Could you help confirm if my understanding is correct on the following: There are three components involved: native Android app on client side, Node.js app on the server side, and Azure Storage. The Node.js app on the server

Azure mobile services: basic read function in javascript

孤街醉人 提交于 2019-12-14 03:15:42
问题 I'm learning javascript and windowsazure mobile services. As a learning lesson I created a "users" table and inserted a test user. I'm actually using icenium to write a demo app for the ipad and andoid tablets, but I can't seem to figure out even the most basic request. So I've setup a jsfiddle here: http://jsfiddle.net/MNubd/5/. It is a simple input box: <input id="uFullName" type="text" /> and some javascript code. I'm trying to retrieve the "name" column from the table "users" and display

How to implement Azure MobileAppController C#

99封情书 提交于 2019-12-13 21:17:41
问题 I have 2 TableController for 2 my tables. Also I need another controller, which process data from tables. Azure's documentation says I should declare ApiController following way: [MobileAppController] public class CustomController : ApiController { //... } But I don't realize how to get any data from tables to process it. I tried to create new instance of Table's Controller, but it doesn't work such way. Any solutions? 回答1: To manage the tables within your custom API, just use regular entity

Login with Microsoft account using Live SDK

谁说胖子不能爱 提交于 2019-12-13 20:15:22
问题 I am creating a Windows 8.1 application, and I want to use it with multiple accounts. When I first started the application, I used the wl.signin scope to test the app faster, but I want to test now with other account(s). So I deleted this scope, I uninstalled the app from my computer, and from my Live Account I removed the apps permissions. Still, if I want to log in for the first time, the app wants permission for automatic login(== wl.signin , which I deleted from my scopes already as I

Azure Mobile Services PullAsync not all data

故事扮演 提交于 2019-12-13 18:13:32
问题 Using Azure Mobile Services and Azure Easy Tables on the back end I want to get filtered data on the client since tables could be quite large but useful rows to specific user with own ID wouldn't be. I tried to use IMobileServiceTableQuery<Messages> query = msgTable.Where(c => c.UserId==_myId); await msgTable.PullAsync("syncmsg"+_myid, query); but it turns out that PullAsync apply query only on next times but first time it pulls all data. It there any way using Azure Mobile Services pull and

TableController: Flatten persistent data into DTO

断了今生、忘了曾经 提交于 2019-12-13 17:20:05
问题 I'm new to Azure App Service mobile apps. I'm trying to understand my options for using TableController to expose complex domain objects to clients. My goal of using TableController is to take advantage of client-side querying and offline sync. Table controllers are designed to perform CRUD operations on simple DTOs. So I'm trying to figure out how a complex domain model could be exposed as the sort of DTOs that TableController is designed for. I've read this post which explains

Azure App Service Mobile - Try It Out not visible

落花浮王杯 提交于 2019-12-13 16:21:16
问题 I started a prototype project using App Service Mobile Apps few months ago and then left it alone. Today I grabbed the code and tried to run it again. It compiled and seems to be running fine. But I'm unable to test access to the APIs. Previously there used to be Try It Out link there, where I can access the apis. But now I can't find it anymore. Accessing the url /help but its showing 404 error. 回答1: The Try it Out button has been removed in Azure Mobile Apps, in favor of Swagger support.

in azure mobile app quick start don't display result

我只是一个虾纸丫 提交于 2019-12-13 09:21:44
问题 I just want to create a windows 10 mobile app but in mobile app when i select quick start it doesn't display result and this error is shown. Could not install MobileAppsManagement Site Extension. SettingListPart MICROSOFT_AZURE_MOBILESERVICES This error is viewed after clicking on quick start 回答1: The error is generally indicative of a browser issue and rarely of a permissions issue on the azure subscription that you are logging into. Force reload the page or clear the cache and try again. 来源