如何使用 firebase 云函数发送 http link 作为响应

How send an http link in response using firebase cloud functions

这是我的函数:

exports.onEmailVerified = functions.region('southamerica-east1').https.onRequest((req, res) => {
  return res.status(200).send('html link to redirect')
})

响应如何才能向用户开放html?

您可以像这样发送 HTTP 重定向:

res.redirect('the-url');