我正在关注此链接以实现自定义身份验证。
我在同一个链接中找到了以下代码:
sm.signIn({
root: {
user: 'https://lyncweb.company.com/.../user?originalDomain=company.com',
xframe: 'https://lyncweb.company.com/.../XFrame.html'
},
auth: (request, sendRequest) => {
// somehow get the token
request.headers["Authorization"] = "Bearer ey...Az";
// it returns a Promise, so the token could be
// obtained asynchronously
return sendRequest(request);
}
});
上面的代码片段中没有关于什么user
和内容的进一步解释。xframe
我们正在尝试什么:
将用户的令牌传递给 SDK 以使用户登录。这种方法可能吗?