问题标签 [azure-management-api]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - 使用 AD 处理 Azure 管理 API 时出错
我正在使用 Microsoft.WindowsAzure.Management 和 Microsoft.IdentityModel.Clients.ActiveDirectory 包尝试从 C# 代码使用 Azure 管理 API,但是当我尝试从中检索一些数据时,我总是收到错误消息:
这是我正在使用的代码示例:
c# - Azure.Authenticate 与交互式用户登录 (Microsoft.Azure.Management.Fluent)
我曾经管理 Azure 资源的旧预览版本。身份验证的工作方式如下:
这将弹出交互式用户登录窗口。我想对新的 fluent nuget 包做同样的事情(Microsoft.Azure.Management.Fluent version="1.0.0"
)
这似乎是身份验证方法的最佳文档:https ://github.com/Azure/azure-sdk-for-net/blob/Fluent/AUTH.md
但它只涵盖了将凭据存储在我想避免的 HDD 上的选项。因此,任何使用我的程序的用户都需要登录。
总而言之:如何使用带有最新 Azure 管理 API 的交互式用户登录进行身份验证?
rest - 通过(Rest)API 管理 AzureSearch
我正在尝试创建一个可以扩展 Azure 搜索组件的“副本”和“分区”的工具。为此,我阅读了 Microsoft 的以下文章:
https://docs.microsoft.com/en-us/rest/api/
现在,我无法针对 azure 进行身份验证以获取 AuthToken。有没有办法让它更容易?或者,你们有如何做的样本吗?
这是我的代码示例:
调用它后,我得到一个 Azure 登录屏幕。使用有效凭据登录后,出现以下异常:
System.AggregateException:“发生了一个或多个错误。”
内部异常:
AdalServiceException:AADSTS50001:在名为 的租户中找不到名为的应用程序。
如果租户管理员未安装应用程序或租户中的任何用户未同意此应用程序,则可能会发生这种情况。
您可能已将身份验证请求发送给错误的租户。
c# - 如何使用 Azure fluent 资源管理注册资源提供者?
我想完全自动化我的资源创建过程。不幸的是,全新的订阅默认没有注册一些资源提供者。例如 SQL。这很容易解决,如下所述:https ://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-common-deployment-errors#noregisteredproviderfound
但是,这仅概述了使用门户手动或使用 Powershell 的方法。
我正在寻找使用的解决方案Microsoft.Azure.Management.ResourceManager.Fluent
我无法使用 C# 来做到这一点似乎不一致,但我似乎无法在任何地方找到该功能。
如何使用 Azure fluent 资源管理为新订阅注册资源提供程序?
azure-sdk-.net - 如何在新的 Azure 资源管理器 Fluent 中备份 Webrole 包
我需要备份 Web 角色包并将其存储在 azure 存储中 在旧版本中我使用过 Azure 管理库 https://www.nuget.org/packages/Microsoft.WindowsAzure.Management.Libraries/
我将如何使用流利的 api 来完成。 https://www.nuget.org/packages/Microsoft.Azure.Management.Fluent
php - Trouble forming post to get Azure token using Guzzle6 (Error: AADSTS90014)
We're moving from Guzzle3 to Guzzle6. I wrote a process to authenticate and access the Azure Management API that worked fine in Guzzle3. However, I'm unable to figure out how to get it to work in Guzzle6. The purpose is to get the access token which is then use in subsequent requests to the Azure Management API.
Original Code:
#xA;New code I'm working on:
#xA;I've tried so many variations with no luck. I would be grateful for any insight anyone could provide.
Thanks!
azure - Unable to create web app in azure through Azure Management Library
I have trying to create a web app through fluent Azure Management Library.
I am currently on DreamSpark Subscription.
Here is my program.cs
I have also, done the azureauth.properties setup.
Here is the error it throws while creating:
I have also performed steps to be a contributor from here:
https://docs.microsoft.com/en-us/dotnet/azure/dotnet-sdk-azure-get-started?view=azure-dotnet
azure - 如何使用自签名证书通过 Azure 管理库进行身份验证?
有没有办法通过Azure 管理库使用自签名证书来登录 Azure?
除了 GH 的CertificateAuthenticationProvider之外, Authenticate with the Azure Management Libraries for .NET中似乎没有任何内容,SdkContext.AzureCredentialsFactory
也没有提及任何内容。这反过来被ApplicationTokenProvider使用,它出现在一些测试中。
<编辑:我在https://github.com/Azure/azure-sdk-for-net/issues/3373发现 GH 中已经存在这个问题。它还概述了一个解决方案。
git - AzureManagement 库创建链接 VsTs git 的应用服务
我的代码托管在 Visual Studio Team Services 存储库上,但它要求公共 git 存储库。我怎样才能做到这一点?WithPublicGitRepository
c# - Azure 指标从 MetricsClient 返回 0
我有一项夜间工作,使用 Microsoft.WindowsAzure.Management.Monitoring 中的 MetricsClient 从 Azure 收集几个不同的指标。这已经设置并工作了一段时间。但是最近它停止正常工作。
我得到了成功的响应,但是 Total 和 Average 属性被设置为 0。Count 有一个值,Max 有一个值,所以肯定应该有一个 Total 和 Average。当我登录门户时,平均响应时间图表中有一些值。
这似乎是 Azure 指标问题。还有其他人看到这个问题吗?
谢谢