目标是使用以下代码从Cloud Code中删除Parse.File:
Parse.Cloud.httpRequest({
method: 'DELETE',
url: 'https://api.parse.com/1/files/' + file.name(),
headers: {
"X-Parse-Application-Id": "...",
"X-Parse-Master-Key" : "..."
},
success: function(httpResponse) { // ... },
error: function(httpResponse) { // ... }
});
如何获得X-Parse-Master-Key"在Cloud Code中?只要Parse.Cloud.useMasterKey()在Parse.Cloud.httpRequest中不起作用。它无法使用。
获得" X-Parse-Application-Id"也很棒。在运行时,因为我们在所有游戏中都使用相同的Cloud Code。
答案 0 :(得分:0)
您可以在解析应用的设置页面上获取ParseMasterKey
,因此除非您事先将其存储在本地,否则无法从其他任何地方获取该内容。
不确定您对App-Id
的要求,因为它与ParseMasterKey
大致相同(您无法通过请求获取)