3

我正在尝试在 Heroku 上使用带有 Next-Auth.js 的 postgres 实例 Heroku 的文档指出不应将凭据硬编码到应用程序中;所以,我正在尝试使用 Heroku 的 api 来获取所需的 url。我的问题 - 我认为 - 当我尝试异步运行 axios 请求时,return 语句的值没有分配给对象的database属性options。我究竟做错了什么?非常感谢!

import NextAuth from "next-auth";
import Providers from "next-auth/providers";
const axios = require("axios");

// Heroku api key and postgres instance
const herokuApiKey = PROCESS.ENV.API_KEY;
const herokuPostgres = PROCESS.ENV.POSTGRES_INSTANCE;

// Connection to Heroku API
const herokuApi = axios.create({
  baseURL: `https://api.heroku.com`,
  headers: {
    Authorization: `Bearer ${herokuApiKey}`,
    Accept: "application/vnd.heroku+json; version=3",
  },
});

// Async function to get database string
const getCredentials = async () => {
  const response = await herokuApi.get(`addons/${herokuPostgres}/config`);
  const pgConnStr = response.data[0].value; // Logging this value displays the needed string
  return pgConnStr; 
};

export default async (req, res) => NextAuth(req, res, {
  providers: [
    Providers.Email({
      server: process.env.EMAIL_SERVER,
      from: process.env.EMAIL_FROM,
    }),
  ],
  database: getCredentials(),
});

4

1 回答 1

1

getCredentials是一个异步函数,这意味着它返回一个承诺。因此,您需await要这样做。

database: await getCredentials()
于 2021-01-25T18:46:15.740 回答