Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add -> REST Api Client Generates exception. How to fix it?

After selecting "Add" and "REST API Client", VS generates an exception (no idea why this option occurs so often). I do not understand it. How to fix this? Below, you can see my VS2015 environment and screenshots.

enter image description here enter image description here

like image 829
Daan Avatar asked Oct 29 '22 14:10

Daan


1 Answers

According the error , the RestartGetway method is not implement. So

  1. please check your REST API on Azure to make sure all method in your API have been implemented first.
  2. You could try add your REST API on another machine to make sure this issue related to the REST API or Visual Studio itself.

And I also tried Add a REST API into my UWP app from Azure it is successful in my side. I'm using Visual Studio 2015 with Update 3. The version should be 14.0.25431.01.

  1. Please check whether there has any updates for your Visual Studio 2015 from

Tools -> Extensions and Updates -> Updates.

In addition, all Azure related tools version are listed in below.

  1. Please make sure all these tools on your machine are the same with mine.
  • Microsoft Azure Mobile Service Tools 1.4
  • Azure App Service Tools v2.8.1
  • Common Azure Tools 1.8
like image 126
BehrouzMoslem Avatar answered Jan 02 '23 21:01

BehrouzMoslem