Questions tagged [mobileserviceclient]

23 questions
0
votes
1 answer

Xamarin MobileServiceClient RefreshUserAsync with Google 403

I am using Azure's MobileServiceClient sdk to authenticate with my server. With the upgrades to 4.x version I am also using Xamarin.Auth to authenticate users with Google and Facebook. When the response comes back from Google I am getting a…
rleffler
  • 430
  • 6
  • 15
0
votes
1 answer

Azure MobileService Client - ToListAsync not retrieving all data

I am using the MobileServiceClient class provided by Azure to fetch data from my Azure SQL database. It appears that I am only getting the first 60 or so rows from my database when I use the ToListAsync() function. Is there a way around this?…
0
votes
1 answer

Can I create Azure MobileServiceClient instance with Azure Function App url instead of creating an Azure Mobile App?

My purpose is to build my mobile app backend serverless. Now, when I try to create MobileServiceClient instance, it asks for an Azure Mobile App URI, can this URI be an Function App URI or it has to be only Mobile App?
Ray
  • 41
  • 5
0
votes
1 answer

Azure App Service Authentication - Pulled data even when authentication failed

I have a Xamarin Forms application that is targeting Windows UWP. I have successfully setup Offline Sync and Authentication by following the Microsoft docs such as this article:…
0
votes
2 answers

MobileServiceClient MobileServiceInvalidOperationException Response Content is null

I'm using the following code in a Xamarin Forms app: HttpResponseMessage response = null; try { HttpContent content = new StringContent(JsonConvert.SerializeObject(register), Encoding.UTF8, "application/json"); response = await…
0
votes
1 answer

How to get column average from azure mobile apps

I am using azure mobile apps .net back-end for my windows 10 application and I would like to retrieve the column average from a table in my database. How can I do that? I have searched the internet and can't find anything useful. My Table just has…
0
votes
1 answer

Azure Mobile App Authentication using Xamarin

I read these two articles 1.here and 2.here to find out what is best way to perform authentication against an Azure Mobile App when the API on the server is using Claims based custom authorization and the Xamarin client calling it is using the…
user20358
  • 14,182
  • 36
  • 114
  • 186
-1
votes
2 answers

Azure SQL C# Backend Querying Float Caues "Internal Server Error"

I have a pretty bazar one for you guys that I just can't figure out or even wrap my head around. I've created a few Azure databases in the past and I believe this is my second one using a .NET backend. I seem to have everything pulling/inserting…
1
2