gpt4 book ai didi

c# - 如何管理 ACS 服务身份

转载 作者:行者123 更新时间:2023-12-02 19:36:54 26 4
gpt4 key购买 nike

我在 azure WebRole 中托管 WCF 4.5 服务我使用 Azure ACS 服务身份来管理我的 wcf 用户(主动身份验证)。我接受这个模型,因为我们的用户数量有限

现在我想知道如何通过 C# 代码以编程方式管理(创建/读取/更新/删除)ACS 服务身份。

最佳答案

看看ACS Management Service API其中有 ServiceIdentity管理。

管理端点位于此处:
https://NAMESPACE.accesscontrol.windows.net/v2/mgmt/service

您可以利用此 ACS 管理服务来创建新的 ServiceIdentities

string name = "SampleServiceIdentity";
string password = "SampleServiceIdentityPassword";
ServiceIdentity sid = new ServiceIdentity()
{
Name = name
};

DateTime startDate, endDate;
startDate = DateTime.UtcNow;
endDate = DateTime.MaxValue;

ServiceIdentityKey key = new ServiceIdentityKey()
{
EndDate = endDate.ToUniversalTime(),
StartDate = startDate.ToUniversalTime(),
Type = "Password",
Usage = "Password",
Value = Encoding.UTF8.GetBytes(password),
DisplayName = String.Format(CultureInfo.InvariantCulture, "{0} key for {1}", "Password", name)
};

svc.AddToServiceIdentities(sid);
svc.AddRelatedObject(
sid,
"ServiceIdentityKeys",
key);


svc.SaveChanges(SaveChangesOptions.Batch);

此示例来自MSDN - How to: Use ACS Management Service to Configure Service Identies .

关于c# - 如何管理 ACS 服务身份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16063764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com