从服务器获取安全密钥(字符串),以便在 Swift 中使用它

Get security key (String) from Server, to use it in Swift

我的服务器 (linux) 上有一个文件,里面有一个密钥(类似于:asdfadsfadsf),这个密钥每 2 小时都会更改。有没有一种安全的方法可以从我的服务器中提取该密钥,以便在我的 swift 应用程序中使用它?关键并不是真正的秘密,没有人可以用它做坏事。但我想知道如何处理它。

在服务器上编码并在应用程序中解码?

提前致谢

只需在服务器中实现一个 API,以便应用程序在应用程序或逻辑需要时调用并获取内容(例如您的密钥)。

The key is not really that secret and no one could do bad thing with it.

然后 HTTPS API 调用就足够了。

Encode it on the server and Decode it in the application?

如果它是普通密钥并且不像您提到的那样安全。可能不需要编码和解码。