azure-mobile-services | Mobile Services is deprecated - Use Mobile Apps | Azure library

 by   Azure HTML Version: Current License: Apache-2.0

kandi X-RAY | azure-mobile-services Summary

kandi X-RAY | azure-mobile-services Summary

azure-mobile-services is a HTML library typically used in Cloud, Azure, Xamarin applications. azure-mobile-services has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

Azure Mobile Services has been superseded by Azure App Service Mobile Apps and is scheduled for removal from Azure. We recommend using Azure Mobile Apps for all new mobile backend deployments. Read this announcement to learn more about the pending deprecation of this service. Learn about Mobile Apps in Azure App Service. Get started with Azure Mobile Apps, see the Azure Mobile Apps documentation center.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              azure-mobile-services has a low active ecosystem.
              It has 477 star(s) with 317 fork(s). There are 117 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              azure-mobile-services has no issues reported. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of azure-mobile-services is current.

            kandi-Quality Quality

              azure-mobile-services has no bugs reported.

            kandi-Security Security

              azure-mobile-services has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              azure-mobile-services is licensed under the Apache-2.0 License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              azure-mobile-services releases are not available. You will need to build from source code and install.
              Installation instructions, examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of azure-mobile-services
            Get all kandi verified functions for this library.

            azure-mobile-services Key Features

            No Key Features are available at this moment for azure-mobile-services.

            azure-mobile-services Examples and Code Snippets

            No Code Snippets are available at this moment for azure-mobile-services.

            Community Discussions

            QUESTION

            Exchange Facebook SDK acces token for Azure B2C acces token
            Asked 2019-Oct-10 at 06:07

            I'm currently working on a mobile app and I want to use Facebook SDK access token on android to authenticate against a .NET Web Api.The Web Api is secured with Azure B2C Identity Management. My Azure B2C Identity Management system uses Facebook as Identity provider.

            What I want to achieve is to acquire an access token silently from the Azure B2C Identity Management System based on the Facebook SDK access token. The reason I want to achieve this is that if the user has already installed Facebook app on his mobile to not be forced to reenter his credentials.

            I found this post which does something similar but using mobile services on azure https://blogs.msdn.microsoft.com/carlosfigueira/2014/01/07/using-the-facebook-android-sdk-for-logging-in-to-azure-mobile-services/

            What I want to achieve is something similar but using Azure B2C Signin Policy.

            Any ideas on how this can be done?

            ...

            ANSWER

            Answered 2019-Oct-10 at 06:07

            I believe this isn't supported. You would instead have to use an OpenID Connect SDK like AppAuth instead.

            AppAuth uses features like Chrome Custom Tabs which shares cookies with the main browser so users don't have to re-login to sites like facebook.

            Also, there is an official tutorial for using AppAuth with Android using Azure AD B2C.

            Source https://stackoverflow.com/questions/58224892

            QUESTION

            How to add filters into an existing filter function when querying Azure Mobile Services
            Asked 2017-Aug-08 at 08:14

            I'm using Azure Mobile Services library for Javascipt in my Angular Web App. According to the documentation here: https://github.com/Azure/azure-mobile-services/blob/master/docs/mobile-services-html-how-to-use-client-library.md#how-to-filter-returned-data

            There are two ways to filter the returned data. One is passing a JSON object and the other is passing a filter function (for complex filtering). I'm using the filter function since I have to use relational operators for columns like startDate or endDate which require a greater than or less than condition.

            I have a function, like the one below, which returns a filter function based on certain filters set on the front end, but to cater different filters, I have to use a lot of if..else conditions to see which of them is set and what filter function to return.

            ...

            ANSWER

            Answered 2017-Aug-08 at 08:14

            Actually, the body of the filter function is translated into an Open Data Protocol (OData) boolean expression which is passed to a query string parameter. However, you can directly pass an OData query string to the read method, and build OData query string as below:

            Source https://stackoverflow.com/questions/45544718

            QUESTION

            MobileServiceClient error with Android project in Xamarin Forms
            Asked 2017-May-15 at 00:11

            I'm trying to build my Android project in a Xamarin.Forms solution and the following line keeps raising an exception that breaks the build.

            ...

            ANSWER

            Answered 2017-May-15 at 00:11

            Derp

            You need to add the Azure Mobile Client NuGet package to all the mobile app projects in the solution - Ken Tucker

            Source https://stackoverflow.com/questions/43967837

            QUESTION

            Logging in Microsoft Azure TableController
            Asked 2017-Apr-24 at 06:14

            Can someone tell me how to log from a TableController class (Microsoft.Azure.Mobile.Server)? I have seen a few places (such as https://blogs.msdn.microsoft.com/azuremobile/2014/04/24/logging-with-the-net-backend-for-azure-mobile-services/) that say to user the TableController Services member, Log property and to call the logging methods from there--this.Services.Log.Info("log text"). But I don't see any Services member of the TableController class.

            Thanks, Steve

            ...

            ANSWER

            Answered 2017-Apr-24 at 06:14

            The Services property only works under Azure Mobile Services. In Azure Mobile App, The Services property is no longer part of the SDK. Logging is now accomplished using the standard ASP.NET trace writing.

            Source https://stackoverflow.com/questions/43579158

            QUESTION

            Autofac with azure mobile app
            Asked 2017-Mar-18 at 06:44

            I am trying to use autofac with azure mobile app to have dependency injection in custom controllers.

            following this link

            http://wp.sjkp.dk/dependency-injection-with-azure-mobile-services-net-backend/

            however, i can't find ConfigBuilder, ConfigOptions classes in my project to get started.

            Are they outdated or i am missing something here?

            Update:

            Managed to write a detailed explaination here about mobile app and autofac integration here. https://cloudontopblog.wordpress.com/2017/03/18/18/

            ...

            ANSWER

            Answered 2017-Jan-25 at 17:02

            Mobile Services is no longer active. You are using Azure Mobile Apps. That blog post is out of date at this point.

            I don't know of anyone using AutoFac with Azure Mobile Apps, so I'm afraid you are blazing new trails. If you get it figured out, please write about your experience!

            Source https://stackoverflow.com/questions/41856764

            QUESTION

            Using Azure Mobile App to authenticate Nancy
            Asked 2017-Mar-07 at 06:51

            I see that I can add Nancy to my Azure Mobile App. http://www.strathweb.com/2014/02/running-owin-pipeline-new-net-azure-mobile-services/ but how can I add the authentication for Nancy? The goal here is to be able to have both a web app and a mobile app using the same server.

            Goal: If Nancy page requires authentication, jump to ~/.auth/login/aad (for example), then return to the originating page.

            Where I am:

            1. Created new Azure Mobile App ASP.NET application
            2. Added Nancy
            3. Remove default MobileAppConfig and replace with

              ...

            ANSWER

            Answered 2017-Mar-06 at 18:44

            The blog post you reference is for Azure Mobile Services, not Azure Mobile Apps.

            Check out chapter 6 of my book - http://aka.ms/zumobook. It explicitly shows you how to handle App Service Authentication for a variety of platforms. Nancy isn't one of them directly, but the MVC version should assist you there.

            Source https://stackoverflow.com/questions/42590132

            QUESTION

            Azure offline sync of data from 1:n relationship in Android mobile app
            Asked 2017-Jan-16 at 07:57

            I'm trying to enable Azure offline sync in my Android app (Java). I added models with 1:n relationship to my cloud sync web service (C#) like in this article:

            ...

            ANSWER

            Answered 2017-Jan-16 at 07:57

            For android client on Azure Mobile Apps, your scenario is belong to store an object with complex properties or array property into a table, please refer to the subsection How to: Store an object or array property into a table of the section How to: Customize the client from the Azure offical document to do it.

            As reference, there is a blog which introduce how to do it.

            Source https://stackoverflow.com/questions/41666535

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install azure-mobile-services

            To get the source code of our SDKs and samples via git just type:.

            Support

            iOSiOSAndroid
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/Azure/azure-mobile-services.git

          • CLI

            gh repo clone Azure/azure-mobile-services

          • sshUrl

            git@github.com:Azure/azure-mobile-services.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link