简体   繁体   English

令牌的 Nuxt 身份验证参数

[英]Nuxt Authentification parameter for token

Guys!伙计们! Currently I have a problem sending request for token.目前我在发送令牌请求时遇到问题。 I'm using nuxtJS @nuxtjs/auth-next module.我正在使用 nuxtJS @nuxtjs/auth-next模块。 It's working great, but i faced a problem not sending client_secret .它工作得很好,但我遇到了不发送client_secret的问题。 This request for authorization goes to AZURE AD .此授权请求转至AZURE AD My config:我的配置:

msalAzure: {
    scheme: 'oauth2',
    endpoints: {
      authorization: `${process.env.VUE_APP_AZURE_AUTHORITY}/oauth2/v2.0/authorize`,
      token: `${process.env.VUE_APP_AZURE_AUTHORITY}/oauth2/v2.0/token`,
    },
    token: {
      property: 'access_token',
      type: 'Bearer',
      maxAge: 1800,
      global: true,
    },
    refreshToken: {
      property: 'refresh_token',
      maxAge: 60 * 60 * 24 * 30,
    },
    responseType: 'code',
    responseMode: 'query',
    grantType: 'authorization_code',
    accessType: 'offline',
    // ******** change this for your Application (Client) ID ********
    redirectUri: process.env.VUE_APP_AZURE_REDIRECT_URI,
    clientId: process.env.VUE_APP_AZURE_AD_CLIENT_ID,
    clientSecret: process.env.VUE_APP_AZURE_SECRET,
    codeChallengeMethod: 'S256',
    scope: ['offline_access', 'openid', 'profile', 'User.Read'],
    autoLogout: false,
  },

payload for token where i need to paste client_secret:我需要粘贴client_secret的令牌有效负载:

code: 0.AS8AovV86_Vz5UuO2sAmSstunkCOoPABwrREiFppI0jDAkwvAMU.AgABAAIAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P9iCom2SEms5Su-Au0Vl3-GG9W1y4OUDaCIF0y4xmd9H4TIFgNmGW0K425Ji9zN2xAKf6VaQ6q8EiBI9AXdNv8DqZMCDTs9qWBETVF2JftuXIeazYEu-eqmqkNMAp0arJ9Mf7GAnrWHCa5wDYpwXNCI9tQ7nqmuHzp3aRjldsN77_5bq1eqgq7PvU5KaNGmxmkYe96_Xzeqqu-9FlJGpNlJ6y8J1BZtW4wVlRrOn6-n1aIFqOcAGp00kR53uiWExjAIZMdPIdjW8BgD2O6ZY8l_779ArkGrUT6zYEjs_YRb7yg2EqgqnL7ZVBVhoufAxbtsRiGbtvA5_Usp4rPf5Bxft3evNPCYA33PWsJUNSOiq4PeOFfpPHjlA7zwkouwfXnmrswONQatNl8xM3BQuduwf1mAszZQKl-skR9-XlvPxj66aGpdl3_hzIqWCqSbSbmIK0e40-Ob4r7XuNb1qoy7opbJfDp1FmTl6WHRexEE1RPBw_XER7kb6kBrXYnTaYPxHuIcVZeYdYS58o_8kMwVVO-qsTb1N7RyT52DgiHB22yUNZaPwpyB6k1wr9hSbhPT6jkIMbuud__EHrmvRVqQaTY1CHAVG8H1wd3CKJCWTFR9sajos17VybxJ4VT_r7ySRUH2UQarOU0ooTlyO32P7iBO5K9CU3V4XrRAQCiVfIMNcbcU1WWlF_eTkEX9bXnHN6houQtLhVndm8y1XIJ21_qh4pVB3wpm0HrXXSGdYgvrM2Td7zx6EZPKK1CmJMgnEii5w1U09occn-CLHLBZAv6_vE8hNCS3VqN20YAvO2vhiLYalS4JmNHG3Z4CVuJ3K7fz5B23kA
client_id: f0a08e40-c201-44b4-885a-692348c3024c
redirect_uri: http://localhost:8005/login/submit/
response_type: code
audience: 
grant_type: authorization_code 

Sending request for strategy (this params goes for authorize only):发送策略请求(此参数仅用于授权):

@click="$auth.loginWith('msalAzure', { params: { client_secret: process.env.VUE_APP_AZURE_SECRET,},})"

Thank you for your help!谢谢您的帮助!

You cannot access your process.env.VUE_APP_AZURE_SECRET at the client side.您无法在客户端访问您的process.env.VUE_APP_AZURE_SECRET Action click and event trigger is client side.动作点击和事件触发是客户端。

Please try public runtime config with Public Runtime Config - Value of this object is accessible from both client and server using $config.请尝试使用Public Runtime Config进行公共运行时配置 - 客户端和服务器都可以使用 $config 访问此对象的值。

At nuxt.config.jsnuxt.config.js

publicRuntimeConfig: {
  azureClientSecret: process.env.VUE_APP_AZURE_SECRET
}

Then you can use this value by access $config.azureClientSecret at your code as below:然后,您可以通过在您的代码中访问$config.azureClientSecret来使用此值,如下所示:

@click="$auth.loginWith('msalAzure', { params: { client_secret: $config.azureClientSecret,},})"

But I think you should avoid put your secret key at the client side.但我认为你应该避免把你的密钥放在客户端。

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

相关问题 如何使用 Laravel-Lumen 框架检查 azure 令牌(身份验证) - How to check the azure token (authentification) with the Laravel-Lumen framework ADB2C身份体验框架:在身份验证后立即使用访问令牌 - ADB2C identity experience framework : access token use just after an authentification Azure Devops:值不能为空,参数令牌 - Azure Devops: value cannot be null, parameter token Azure身份验证和授权 - Azure Authentification and Authorization Azure AD令牌发行端点不返回“范围”参数 - Azure AD Token Issuing Endpoint doesn't return “scope” parameter Azure 逻辑应用在 Http 查询参数请求中使用 SAS 令牌 - Azure Logic App using SAS token in Http query parameter request Azure DevOps-自定义任务-具有Azure身份验证的PowerShell - Azure DevOps - Custom Task - PowerShell with Azure Authentification 支持Azure AD中的用户证书身份验证 - Support for user certificate authentification in Azure AD 使用Msal对Angular中的Azure广告进行身份验证 - Authentification to Azure Ad in Angular using Msal Azure Google身份验证获取用户个人资料信息 - Azure Google authentification get user profile info
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM