我正在尝试设置一个简单的测试网页来执行一些从 Parse 发送推送通知的云代码。我使用 back4app.com。这是我到目前为止所拥有的:
JS:
Parse.initialize('APP_ID');
Parse.serverUrl = 'https://parseapi.back4app.com/';
function sendPushNotification() {
let messageBox = document.getElementById('messageBox');
let messageToPush = messageBox.value;
Parse.Cloud.run("sendPushNotification", { message: messageToPush }).then(function(result) {
console.log("result: " + JSON.stringify(result));
}, function(error) {
console.log("Error: " + JSON.stringify(error));
});
}
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>title</title>
<script src="https://unpkg.com/parse/dist/parse.min.js"></script>
<script src="main.js"></script>
</head>
<body>
Message to Push:<br>
<input id="messageBox" type="text" /><br>
<input type="button" value="Push" onclick="sendPushNotification()" />
</body>
</html>
但是当我在文本框中添加一些文本时,会出现以下错误:
[Error] Failed to load resource: The certificate for this server is invalid. You might be connecting to a server that is pretending to be “api.parse.com” which could put your confidential information at risk. (sendPushNotification, line 0)
出了什么问题?在 Parse Developers JS 指南中,它说:
要使用 Javascript 初始化你自己的 Parse-Server,你应该用这个替换你当前的初始化代码
Parse.initialize("YOUR_APP_ID"); Parse.serverURL = 'http://YOUR_PARSE_SERVER:1337/parse'
我使用了我在 iOS 应用程序中使用的 back4app url。如此迷茫