Questions tagged [mobileserviceclient]
23 questions
2
votes
0 answers
"Cannot populate JSON array for type" When trying insert data
Update: After all day messing with this, I fixed it.
I Changed my mobileserviceclient URL to include https instead of HTTP.
I think this was causing my post to instead be a get request that returned an array of "Comment" and tried to parse it to a…

4rrow
- 95
- 11
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…

Mephisztoe
- 3,276
- 7
- 34
- 48
1
vote
0 answers
Registering Azure App Service application to use Google Login
I am creating a Xamarin.Forms application and using Azure's Authentication/Authorization to add Facebook and Google as authentication providers. In my code, I am using the LoginAsync() from MobileServiceClient class to perform the login for both…

Jenni
- 85
- 2
- 5
1
vote
2 answers
Creating a new MobileServiceClient() freezes VS and Android app
Working on a Xamarin Forms app (Android & iOS)
When trying to create my connection to an easy table I have in an Azure Mobile App my Visual Studio Freezes for around 7 seconds and then when it comes back it has exited the code and the Android app,…

John Butler
- 41
- 5
1
vote
1 answer
Providing "login_hint" on server side Azure Mobile App
I am using Azure MobileServiceClient to authenticate with a mobile app. I want to enable a secure logout function, which involves deleting the cookies created by the web component. Otherwise anyone selecting "Login" will simply get logged in if…

Bill Noel
- 1,120
- 9
- 21
0
votes
1 answer
MobileServiceUser returns wrong UserId
I have an existing user in my Xamarin Forms app whose Details are as follows:
First Name: Jim
Last Name: Smith
ProviderLoginId = jsmith@google.com
OAuth Provider: Google
When I first create this user, I use the following method to authenticate…

sidsud
- 25
- 9
0
votes
0 answers
MobileServiceClient IMobileServiceSyncTable PullAsync Resource Not Found
This error "
WindowsAzure.MobileServices The resource you are looking for has been
removed, had its name changed, or is temporarily unavailable"
Occurs when trying to retrieve records from an Azure SQL Db connected to a App Service. It occurs for…

scott
- 1
- 3
0
votes
1 answer
Can't authenticate MobileServiceClient in Azure ASP.NET Backend
I have ASP.NET Web Application (.NET Framework) based on Visual Studio 2019 template with custom authentication with individual user accounts.
public void ConfigureAuth(IAppBuilder app)
{
// Configure the db context and user manager to…
0
votes
1 answer
Azure mobile app custom authentication and MobileServiceClient
I was following custom authentication for my azure mobile app (https://www.newventuresoftware.com/blog/custom-authentication-with-azure-mobile-apps)
I created AuthControll which accepts username and password and creates token. When i call…

Erik Parso
- 194
- 14
0
votes
1 answer
Azure Mobile Service Client InvokeApiAsync not hitting WebAPI
I can't seem to hit my web api from my xamarin forms mobile app. I can hit the api via PostMan and it works fine.
A command that runs when text is entered
return _searchCommand ?? (_searchCommand = new Command(async (text) => await…

jgabb
- 542
- 1
- 4
- 20
0
votes
0 answers
ASP.NET Query Multiple Tables With MobileServiceClient or IMobileServiceTable
I have an ASP.NET application which is using IMobileServiceTable and MobileServiceClient to pull the data from Azure database. I am trying to execute a query with inner/outer joins but dont find a way to query my database.
I understand I can weite…

Paraclete
- 21
- 2
0
votes
1 answer
How can I use basic authentication with MobileServiceClient?
I'm using the azure mobile services sdk to do offline sync. I made my api so that it is protected with basic authentication using email and password.
How can I embed these credentials with the MobileServiceClient, so that whenever I call a method it…

Rafael Colon
- 29
- 1
0
votes
1 answer
How to use where query from IMobileServiceTableQuery in xamarin Forms?
i tried get the object id from the email, can i do that in IMobileServiceTableQuery, so if i write my query in sql server it will be something like this
SELECT id from Member where email = 'nani@gmail.com' ,so how to do that in…

Theodorus Agum Gumilang
- 1,414
- 4
- 23
- 46
0
votes
1 answer
Replacement for Azure MobileService.Client.GetPush().RegisterAsync()
Since the Microsoft.Azure.MobileClient nuget currently is only supporting .net standard I am considering dropping it from my app-project.
The only thing I am using it for is the RegisterAsync() call.
Can I do this in the backend (using the Azure…

Mr W
- 597
- 1
- 7
- 22
0
votes
0 answers
Authenticate to Azure App Service back end with Google token received from Xamarin.Auth in a Xamarin Forms App
I am trying to use Google Authentication in my Xamarin Forms app by using Xamarin.Auth to perform client-side authentication and then passing the received token to my Azure App Service custom website back-end that is configured to use Google…

Kenon Ronz
- 1
- 1