Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Facebook の clientId とシークレットを安全な場所に保管し、github にコミットしたり、開発チーム全体と共有したりしたくありません。
ほとんどの人は Facebook で開発アプリケーションを作成しますか?
まあ、それらを環境変数として設定できます。開発マシンでは、シェルプロンプトから以下を実行できます
$ export clientID="xxxxx" $ export clientSecret="xxxxx"
node.js コードでは、これらの 2 つの変数が共通変数として使用できるようになります。
process.env.ClientID process.env.ClientSecret