无法连接到 Azure 移动服务 Visual Studio 2015
Cannot connect to Azure Mobile Services Visual Studio 2015
我是 Microsoft Azure
的新手,很难连接到现有的 Azure Mobile Service
。我想在 Visual Studio 2015
.
中的 Console Application
中添加对此移动站点的服务引用
当我右键单击 References
-> Add Connected Service
-> Azure Mobile Services
时,配置按钮被禁用(见图):
- 我已经安装了
Azure SDK
- 我通过
NuGet
添加了 WindowsAzure.MobileServices
- 尝试右键单击项目
Add
-> Azure API App Client
,但可用服务的下拉列表为空。当我从 Visual Studio 发布移动服务时,它显示在 现有移动服务 的下拉列表中
- 我成功使用
Fiddler
连接到服务并且能够查询数据。
我是不是缺少 SDK 什么的?
此客户端类型(控制台应用程序)不支持此工具手势。从此对话框中,可以将移动服务添加到 Windows 和 Cordova 目标。您屏幕截图中的 More Information link 显示了完整的详细信息。
您仍然可以通过 SDK you obtained via NuGet 连接到移动服务。您只需要手动安装它,而不是使用工具。为了开始,创建一个 MobileServiceClient
对象并将它传递给您的应用程序的 URL 和应用程序密钥(在管理门户中可用)。
我是 Microsoft Azure
的新手,很难连接到现有的 Azure Mobile Service
。我想在 Visual Studio 2015
.
Console Application
中添加对此移动站点的服务引用
当我右键单击 References
-> Add Connected Service
-> Azure Mobile Services
时,配置按钮被禁用(见图):
- 我已经安装了
Azure SDK
- 我通过
NuGet
添加了 - 尝试右键单击项目
Add
->Azure API App Client
,但可用服务的下拉列表为空。当我从 Visual Studio 发布移动服务时,它显示在 现有移动服务 的下拉列表中
- 我成功使用
Fiddler
连接到服务并且能够查询数据。
WindowsAzure.MobileServices
我是不是缺少 SDK 什么的?
此客户端类型(控制台应用程序)不支持此工具手势。从此对话框中,可以将移动服务添加到 Windows 和 Cordova 目标。您屏幕截图中的 More Information link 显示了完整的详细信息。
您仍然可以通过 SDK you obtained via NuGet 连接到移动服务。您只需要手动安装它,而不是使用工具。为了开始,创建一个 MobileServiceClient
对象并将它传递给您的应用程序的 URL 和应用程序密钥(在管理门户中可用)。