gpt4 book ai didi

azure - 使用 Azure AD 的 NextAuth 刷新 token

转载 作者:行者123 更新时间:2023-12-02 23:07:11 28 4
gpt4 key购买 nike

由于访问 token 的默认有效时间为 1 小时,因此我尝试让刷新 token 在我的应用程序中工作。我已经被这个问题困扰了几个星期,而且似乎无法解决它。我已经验证了我的 refreshAccessToken(accessToken) 函数可以正常工作(其中 accessToken 是一个包含过期 token 、刷新 token 和其他一些内容的对象)。

我将问题确定为 async session() 函数。虽然在async jwt()函数中调用了refreshAccessToken,但async session()函数仍然会导致错误,因为参数token 未定义。这会导致错误无法从未定义中读取属性accessToken(因为token.accessToken位于第一行)。我该如何解决这个问题,并以某种方式使函数 async session() 等待访问 token 刷新,然后将其与所有其他信息(组、用户名等)一起发送到客户端?

/**
* All requests to /api/auth/* (signIn, callback, signOut, etc.) will automatically be handled by NextAuth.js.
*/

import NextAuth from "next-auth"
import AzureAD from "next-auth/providers/azure-ad";

async function refreshAccessToken(accessToken) {
try {
const url = "https://login.microsoftonline.com/02cd5db4-6c31-4cb1-881d-2c79631437e8/oauth2/v2.0/token"
await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: `grant_type=refresh_token`
+ `&client_secret=${process.env.AZURE_AD_CLIENT_SECRET}`
+ `&refresh_token=${accessToken.refreshToken}`
+ `&client_id=${process.env.AZURE_AD_CLIENT_ID}`
}).then(res => res.json())
.then(res => {
return {
...accessToken,
accessToken: res.access_token,
accessTokenExpires: Date.now() + res.expires_in * 1000,
refreshToken: res.refresh_token ?? accessToken.refreshToken, // Fall backto old refresh token
}
})
} catch (error) {
console.log(error)

return {
...accessToken,
error: "RefreshAccessTokenError",
}
}
}

export const authOptions = {
providers: [
AzureAD({
clientId: process.env.AZURE_AD_CLIENT_ID,
clientSecret: process.env.AZURE_AD_CLIENT_SECRET,
tenantId: process.env.AZURE_AD_TENANT_ID,
authorization: {
params: {
scope: "offline_access openid profile email Application.ReadWrite.All Directory.ReadWrite.All " +
"Group.ReadWrite.All GroupMember.ReadWrite.All User.Read User.ReadWrite.All"
}
}
}),
],
callbacks: {
async jwt({token, account, profile}) {
// Persist the OAuth access_token and or the user id to the token right after signin
if (account && profile) {
token.accessToken = account.access_token;
token.accessTokenExpires = account.expires_at * 1000;
token.refreshToken = account.refresh_token;

token.id = profile.oid; // For convenience, the user's OID is called ID.
token.groups = profile.groups;
token.username = profile.preferred_username;
}

if (Date.now() < token.accessTokenExpires) {
return token;
}

return refreshAccessToken(token);
},
async session({session, token}) {
// Send properties to the client, like an access_token and user id from a provider.
session.accessToken = token.accessToken;
session.user.id = token.id;
session.user.groups = token.groups;
session.user.username = token.username;

const splittedName = session.user.name.split(" ");
session.user.firstName = splittedName.length > 0 ? splittedName[0] : null;
session.user.lastName = splittedName.length > 1 ? splittedName[1] : null;

return session;
},
},
pages: {
signIn: '/login',
}
}

export default NextAuth(authOptions)

我尝试在网上到处搜索,但根本找不到使用 Azure AD 和 NextAuth 的人(不是 B2C 版本,而是 B2B/组织版本)。

TLDR:使用refreshToken获取新的accessToken是可行的,但是NextAuth不会将此 token 传递给前端,而是抛出错误,因为在async session()中, token 未定义。

最佳答案

在提供的代码中,我犯了将异步与 Promise 混合在一起的错误(归功于 GitHub 上的 @balazsorban44)。这意味着 .then 中的 return 语句将值返回到发起获取请求的位置,而不是从函数 refreshAccessToken() 返回值作为一个整体。我放弃使用 Promise,只使用异步函数:

    const req = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: `grant_type=refresh_token`
+ `&client_secret=${process.env.AZURE_AD_CLIENT_SECRET}`
+ `&refresh_token=${accessToken.refreshToken}`
+ `&client_id=${process.env.AZURE_AD_CLIENT_ID}`
})

const res = await req.json();

关于azure - 使用 Azure AD 的 NextAuth 刷新 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75164721/

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