标签: node.js json openid-connect
出于奇怪的原因,我需要模拟我的OpenID-Connect发现。
但是,发现似乎只接受“有效url”,因此我需要从本地主机中的文件读取JSON。
/.well-known/openid-configuration
应从/utils/mock-config.json中读取
我如何提供文件内容而不是url?
return Issuer.discover(JSON/URL/HERE) .then(function (issuer) { })