How does canister communication with external systems like Salesforce, external databases work? Is it possible? Any literature anyone can share or examples. Thanks in advance.
Google httpoutcalls Dfinity
Things are a bit complicated by the fact that storing API keys on a canister is not very secure. Some people use a proxy to help with this. But make sure you trust your proxy. And make sure you use users trust your proxy.
One day in the future, hopefully our canisters will have access to the secure enclave, and this will be less of a problem.
Couldn’t you encrypt the API key inside the canister?
Where will you keep the encryption key? Your canister needs to add the API key to the outgoing request so at some point it is decrypted in accessible memory.