解析服务器设置

时间:2016-06-11 10:08:19

标签: parse-platform push-notification parse-server

我已按照说明指南在本地计算机上设置了解析服务器,现在我应该如何使用它来发送推送通知。建议使用parse服务器的方法,我可以在我的机器上看到解析服务器设置的功能

2 个答案:

答案 0 :(得分:0)

了解如何使用parse-server实现推送通知:https://github.com/ParsePlatform/parse-server/wiki/Push

答案 1 :(得分:0)

要实施推送,您需要有两件事,因为您将使用自己的服务器发送推送通知,您需要转到Google应用引擎并获取gcm发送者ID和gcm服务器API密钥。这是我用于解析服务器的配置代码。

var api = new ParseServer({
        // Debug server
        databaseURI: '',
        cloud: '',
        appId: '',
        masterKey: '',
        clientKey: '',
        restAPIKey: '',
        javascriptKey: '',
        serverURL: 'http://127.0.0.1:1338/parse',
        databaseOptions: {
            poolSize: 50
        },
        push: {
            android: {
                senderId: '', // The Sender ID of GCM
                apiKey: '' // The Server API Key of GCM
            }
        }
    });