Heroku 表示所有免费应用程序都通过 https 提供。如何获取 .pem 文件?

Heroku says all free apps are served through https. How can I get the .pem file?

我在 Internet 上多次提到搭载 SSL,这意味着 *.herokuapp.com 上的所有 Heroku 应用程序都可以通过 HTTPS 访问。

但是,我正在尝试编写 Alexa skill,为此,我需要 .pem 文件的内容;我不知道 piggyback-SSL 是如何工作的,也不知道如何获取 .pem 文件的内容。

您不太可能接触到它,因为 .pem 文件将包含 Heroku 将保密的私钥。

您需要获取自己的 SSL 证书并将其安装到您的应用程序中。当您拥有自己的SSL证书和私钥后,您就可以生成自己的pem文件了。

https://devcenter.heroku.com/articles/ssl

How to get .pem file from .key and .crt files?