Questions tagged [zumo]

11 questions
1
vote
0 answers

SID from ZUMO Login (MobileServiceUser) differs from the users' ObjectId

I am working on a Xamarin.Forms based crossplatform app targetting iOS and Android. My backend is an ASP.NET Webapplication hosted as an Azure App Service and users can register accounts that I manage with Azure Active Directory B2C. For…
1
vote
2 answers

Azure MobileApp API return 401 (Unauthorized) even after successful login with MobileServiceClient - UWP

MobileApp Service I have an Azure MobileApp with App Service Authentication configured to "AAD Provider" Set client id and secret to AppID and Key of Azure AD Application created. Set IssuerUrl to…
1
vote
1 answer

Why google tokens are not refresh with Easy Auth?

I am using the Easy Auth feature of Azure App Service and I am trying to refresh a token with the Google provider. I followed the Chris Gillum article and correctly called .auth/login/google with the access_type=offline parameter. Then I called…
Thibaut D
  • 23
  • 3
1
vote
1 answer

Why the ZUMO token returned by Easy Euth from Azure App Service is absent in a popup scenario?

When using the Easy Auth authentication feature of Azure App Service, one can start the authentication process by directing the user to https://my-app.azurewebsites.net/.auth/login/{provider}. The user is then redirected to the provider login page,…
Thibaut D
  • 23
  • 3
1
vote
0 answers

Zumo - Entering unable to enter and stay in a void

I am currently programming my Zumo and I am trying to get it on key press to enter a void. It can enter other voids when a wall is detected e.g. but for some reason I can't get it to go into my enterRoom() void on keypress. I have tried just calling…
benjano
  • 369
  • 1
  • 5
  • 17
1
vote
0 answers

Is the social authentication feature in Azure Mobile Apps available outside of Azure?

For example, if I deploy a mirror of my app on Amazon S3, is there any way to provide the same social login experience? Is it possible to store the login information on my own SQL server instead of in Azure? I currently use the default …
tofutim
  • 22,664
  • 20
  • 87
  • 148
1
vote
1 answer

Calling specific user sid using SignalR + Azure Mobile App authentication

I am retrieving the sid in my WebApi controller using private string GetAzureSID() { var principal = this.User as ClaimsPrincipal; var nameIdentifier = principal.FindFirst(ClaimTypes.NameIdentifier); if…
tofutim
  • 22,664
  • 20
  • 87
  • 148
0
votes
1 answer

Calling a C# Azure App Service Controller method from Azure Function WebHook

A third party service calls an Azure Function implemented by me and defined as a WebHook. Right now, this function retrieves a SQL connection string securely from Azure Key Vault, connects to the database and manipulates data directly. However, I…
Mephisztoe
  • 3,276
  • 7
  • 34
  • 48
0
votes
0 answers

Error posting to web api on Azure using zumo on unity

We have an error using some plugin on unity. It worked for a few years, suddenly at 1.6.18 stopped working. We are using webapi through azure app service. The error is: {System.Net.WebException: Error getting response stream (Write: BeginWrite…
user1995211
  • 33
  • 1
  • 6
0
votes
1 answer

No API version was specified Error

I'm working on Azure Mobile Application, I downloaded Quick-start-Server side code and open it by using Visual Studio-2015. When I tried to browse it,Iam getting the issue like :"{"message":"No API version was specified in the request, this request…
Mani
  • 1,228
  • 3
  • 10
  • 28
0
votes
1 answer

What does AddTablesWithEntityFramework() vs AddTables(new MobileAppTableConfiguration()?

I have been using .AddTables(new MobileAppTableConfiguration() .MapTableControllers() .AddEntityFramework()) to setup my MobileAppConfiguration, but recently saw in Adrian Hall's book…
tofutim
  • 22,664
  • 20
  • 87
  • 148