我在azure App服务上创建了 azure Easy API 。如何使用angular Js从Easy API获取API值现在我很难调用API.For App服务没有应用程序key i不知道如何调用API。
在我使用Azure移动服务之前,我可以通过以下方式轻松调用API。对我来说很容易。
var client = new WindowsAzure.MobileServiceClient(
"https://yourservice.azure-mobile.net/",
"API KEY");
client.invokeApi('commentsapi', {
method: 'GET'
}).done(function (response) {
success(JSON.parse(response));
});
答案 0 :(得分:1)
使用azure-mobile-apps-client的v2.0.0-beta版本(可通过npm获得) - 将MobileServiceClient.min.js复制到您的网络区域并包含它 - 如果您使用webpack或browserify构建应用程序,你可以“要求('azure-mobile-apps-client')”。
您不再需要API密钥了。否则,您的客户看起来不错。