開発者は、暗号化された接続または API キーを提供する必要があるアプリケーションを作成します。キーは、REST API との通信に使用されます。安全な接続に使用する必要があるコマンドはどれですか?
正解:C
To provide an encrypted connection when using API keys to communicate with a REST API, the connection must use HTTPS. The curl command with the -X GET option and an HTTPS URL ensures that the communication is encrypted, protecting the API key and data in transit. Reference: Cisco DevNet Secure API Communication