我目前正在为我运行的网站开发一个 api。该 api 将在许多地方使用,其中一个地方是 Android 应用程序。
它的目的是允许用户登录和下载文件。我有 api 版本,它将使用 HTTPS,因此所有数据在传输时都很好。
我遇到的问题是 API 调用需要 API 密钥。使用此密钥,您将能够访问可能导致问题的 API 的某些功能。
我想知道,有没有办法保护这个 API 密钥?我根本不是 Android 开发人员,但人们会使用 Android 上的 API,所以我需要制定解决方案。
以下是 API 使用的流程示例:
// Log the user in with their username and password (HTTPS, so not really an issue)
romhut.request('/api/users/login?apikey=KEY', {username : 'scott', password : 'password'}, function(r) {
console.log(r);
// Once you have the token, request the API key that allows actions such as downloading
romhut.request('/api/files/download?apikey=KEY', {token : r.token, file : file}, function(d){
console.log(d);
// Download the file
}, 'POST');
}, 'POST');