繁体   English   中英

Azure图形API在Node JS中使用自定义用户属性创建B2C用户

[英]Azure graph API create B2C user with custom user attribute in Node JS

你能帮我在Azure AD B2C中使用node js client创建一个用户吗?

在该请求中,我需要填充“signInNames”和我在B2c中为我的应用程序创建的自定义用户属性。

如果您共享样本请求,我们非常感谢。

以下代码对Node.js使用Azure Active Directory身份验证库(ADAL),请求包与Azure AD Graph API进行交互。

1)获取用于Azure AD Graph API的访问令牌:

const AuthenticationContext = require("adal-node").AuthenticationContext;

const tenant = "myb2cdomain.onmicrosoft.com";
const authority = `https://login.microsoftonline.com/{tenant}`;

const authenticationContext = new AuthenticationContext(authority);

function acquireTokenForApplication(clientId, clientSecret, callback) {
    authenticationContext.acquireTokenWithClientCredentials("https://graph.windows.net/", clientId, clientSecret, function(err, tokenResponse) {
        if (err) {
            callback(err);
            return;
        }

        callback(null, tokenResponse.access_token);
    });
}

2)创建用户对象:

const userToBeCreated = {
    accountEnabled: true,
    creationType: "LocalAccount",
    displayName: "Alex Wu",
    passwordPolicies: "DisablePasswordExpiration",
    passwordProfile: {
        forceChangePasswordNextLogin: false,
        password: "Test1234"
    },
    signInNames: [
        {
            type: "emailAddress",
            value: "alexw@example.com"
        }
    ],
    "extension_xxx_<customAttributeName>": <customAttributeValue>
};

其中“xxx”必须替换为b2c-extensions-app应用程序的应用程序标识符(不带连字符)。

例如:

"extension_ab603c56068041afb2f6832e2a17e237_SkypeId": "alexw.skype"

3)将用户对象发送到Azure AD Graph API

function createUser(tenantId, accessToken, userToBeCreated, callback) {
    request.post({
        url: `https://graph.windows.net/${encodeURIComponent(tenantId)}/users?api-version=1.6`,
        auth: {
            bearer: accessToken
        },
        body: userToBeCreated,
        json: true
    }, (err, response, responseBody) => {
        if (err) {
            callback(err);
            return;
        }

        if (!isSuccessStatusCode(response.statusCode)) {
            const errorResult = responseBody;

            callback({
                code: errorResult["odata.error"].code,
                message: errorResult["odata.error"].message.value
            });

            return;
        }

        const createdUser = responseBody;
        callback(null, createdUser);
    });
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM