0

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 needs to specify a ZUMO-API-VERSION of '2.0.0'. For more information and supported clients see: http://go.microsoft.com/fwlink/?LinkId=690568#2.0.0"}".

Can you give me solution for this?

Hans Passant
  • 922,412
  • 146
  • 1,693
  • 2,536
Mani
  • 1,228
  • 3
  • 10
  • 28

1 Answers1

0

I believe the request which you are browsing is something like this

http://localhost/api/values/get

but you have to browse the URL by appending the ZUMO-API-VERSION=2.0.0 something it should look like this

http://localhost/api/values/get?ZUMO-API-VERSION=2.0.0

And make sure both Microsoft.Azure.Mobile.Client and Microsoft.Azure.Mobile.Server are the latest version of the package.config.

This is because both mobile apps client and server are not compatible with each other so you need to send a special header value(ZUMO-API-VERSION) in the request message to make them in sync.

Bhargav Konda
  • 169
  • 1
  • 9