Google Cloud Functions可以使用HTTPS客户端身份验证吗?

时间:2017-12-31 14:15:57

标签: node.js https google-cloud-functions ssl-client-authentication

我可以使用HTTPS触发的Google Cloud Functions进行HTTPS客户端证书身份验证吗?

我独立node.js,我会尝试like this

var https = require('https'); 
var options = {requestCert: true, rejectUnauthorized: true}; 
https.createServer(options, function (req, res) { 
  // ...
}).listen(1234);

但是,由于谷歌云功能(可能)控制node.js服务器的创建,目前我不清楚如何传递所需的选项。

Google提供documentation有关如何使用(OAuth 2.0)服务帐户和访问令牌进行身份验证的信息,但我对HTTPS客户端证书感兴趣,例如网络浏览器也可能存在。

0 个答案:

没有答案