I've downloaded Xamarin.Forms QuickStart Projects(server and cliente) from azure mobile app, then have published server project, so far so good, but i cannot access table controllers, unless i add query string as described.
http://myservice.azurewebsites.net/tables/todoitem?ZUMO-API-VERSION=2.0.0
or if i add ms_skipversioncheck to true in the portal.
Probably something related with server or client versions discrepance.
Even if i update all nuget packages, same thing, just receive BadRequest (400)
But with this server described above, when i run client Project(android simulator in visual studio) it Works fine in not syncing mode.
Once i download nuget sqlite localstore and uncomment the line:
//#define OFFLINE_SYNC_ENABLED
and make this line : await RefreshItems(true, syncItems: true);
to enable off-line mode, i receive only BadRequest(400), again
I dont know what i should check to make the versions compatible.
I did not include stack trace or logs because BadRequest is the only thing i received.
Let me known if you need some further information.
Thanks
Edit: I check this link out, but i coudnt solve my issue.
Its drive me crazy