解析云代码错误 - “需要主密钥”?

Posted

技术标签:

【中文标题】解析云代码错误 - “需要主密钥”?【英文标题】:Parse Cloud Code Error - 'Master Key is Required'? 【发布时间】:2017-04-13 15:45:42 【问题描述】:

每当我尝试运行这个云代码的 sn-p 时,我都会收到一条错误消息:

生成响应时出错。解析错误 代码:141,消息:'推送失败发送错误:需要主密钥'

我尝试过使用网站上的其他一些解决方案,例如使用Parse.Cloud.useMasterKey()useMasterKey: true,但我没有发现这些命令中的任何一个都成功(可能是因为我错误地使用了它们?)。

Parse.Cloud.define("sendPushToUser", function(request, response) 

    var senderUser = request.user;
    var recipientUserId = request.params.recipientId;
    var message = request.params.message;

    var recipientUser = new Parse.User();
    recipientUser.id = recipientUserId;
    var pushQuery = new Parse.Query(Parse.Installation);
    pushQuery.equalTo("user", recipientUser);

    Parse.Push.send(
            where: pushQuery,
            data: 
                    alert: message
            
    ).then(function() 
            response.success("Push was sent successfully.")
    , function(error) 
            response.error("Push failed to send with error: " + error.message);
    );
);

Swift 函数:

func testPush() 



    PFCloud.callFunction(inBackground: "sendPushToUser", withParameters: ["recipientId": PFUser.current()?.objectId!, "message" : "Test notification"])  (success, error) in
        if error != nil 
            print("error occurred")
        else 
            print("Sent successfully")
        
    

【问题讨论】:

你是如何/从哪里运行它的?客户端存在错误 我从我的 swift 应用程序中运行它。该错误出现在 Parse 仪表板日志中,并在我尝试通过我的应用程序激活它时作为错误消息返回。 刚刚编辑了原始问题。对此感到抱歉。 使用 Parse 已经有一段时间了,但我记得云代码应该允许您推送没有问题,而且您的错误似乎是认为您正在尝试从 swift 代码本身发送推送。 您是否在 index.js 中配置了 masterKey? masterKey : process.env.MASTER_KEY ||'your masterkey' 【参考方案1】:

正如盖勒特·李建议的那样

您是否在 index.js 中配置了 masterKey? masterKey : process.env.MASTER_KEY ||'你的主密钥'

【讨论】:

以上是关于解析云代码错误 - “需要主密钥”?的主要内容,如果未能解决你的问题,请参考以下文章

解析云代码给我代码:141 错误

解析云代码错误:未调用成功/错误(代码:141,版本:1.9.0)

解析云代码查询不触发成功或错误

解析服务器云代码查询语法错误 141

解析云代码嵌套查询时未调用代码 141 成功/错误消息

解析云代码 query.withinKilometers