如何在 VS2013 Cordova 应用程序中使用 angularjs 调用 azure easy API?
How to invoke azure easy API using angularjs in VS2013 Cordova Application?
我在 azure 应用 services.How 上创建了 azure Easy API 要从 Easy API 中获取 API 值,请使用angular Js.But 现在我正在努力调用 API.For 应用程序服务没有应用程序密钥我不知道如何调用 API。
在我使用 Azure 移动服务之前,我可以通过以下方式轻松调用 API lines.it 对我来说很容易。
var client = new WindowsAzure.MobileServiceClient(
"https://yourservice.azure-mobile.net/",
"API KEY");
client.invokeApi('commentsapi', {
method: 'GET'
}).done(function (response) {
success(JSON.parse(response));
});
使用 v2.0.0-beta 版本的 azure-mobile-apps-client(可通过 npm 获得)- 将 MobileServiceClient.min.js 复制到您的网络区域并包含它 - 如果您使用 webpack 构建应用程序或者 browserify,你可以 "require('azure-mobile-apps-client')".
您不再需要 API 密钥。否则,您的客户看起来不错。
我在 azure 应用 services.How 上创建了 azure Easy API 要从 Easy API 中获取 API 值,请使用angular Js.But 现在我正在努力调用 API.For 应用程序服务没有应用程序密钥我不知道如何调用 API。
在我使用 Azure 移动服务之前,我可以通过以下方式轻松调用 API lines.it 对我来说很容易。
var client = new WindowsAzure.MobileServiceClient(
"https://yourservice.azure-mobile.net/",
"API KEY");
client.invokeApi('commentsapi', {
method: 'GET'
}).done(function (response) {
success(JSON.parse(response));
});
使用 v2.0.0-beta 版本的 azure-mobile-apps-client(可通过 npm 获得)- 将 MobileServiceClient.min.js 复制到您的网络区域并包含它 - 如果您使用 webpack 构建应用程序或者 browserify,你可以 "require('azure-mobile-apps-client')".
您不再需要 API 密钥。否则,您的客户看起来不错。