使用Parse Server设置密码重置时出错

时间:2017-06-19 20:44:57

标签: ios json heroku parse-server mailgun

我正在使用mongoDB在Heroku上托管的Parse Server。我很难让密码重置功能正常工作。我按照说明将下面的代码添加到index.js。添加此代码后,当应用启动或尝试发送电子邮件时,我收到此错误:JSON text did not start with array or object and option to allow fragments not set.

我知道这意味着服务器无法解析数据,但我完全不确定如何解决这个问题。非常感谢任何帮助!

var express = require('express');
var ParseServer = require('parse-server').ParseServer;
var path = require('path');

var databaseUri = process.env.DATABASE_URI || process.env.MONGODB_URI;

if (!databaseUri) {
    console.log('DATABASE_URI not specified, falling back to localhost.');
}

var api = new ParseServer({
    databaseURI: databaseUri || 'MY_DATABASE_URI',
    cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
    appId: process.env.APP_ID || 'MY_APP_ID',
    masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
    serverURL: process.env.SERVER_URL || 'MY_SERVER_URL',  // Don't forget to change to https if needed

liveQuery: {
    classNames: ["Posts", "Comments"] // List of classes to support for query subscriptions
}

verifyUserEmails: true,
//The public URL of your app.
//This will appear in the link that is used to verify email addresses and reset passwords.
//Set the mount path as it is in serverURL
publicServerURL: 'MY_SERVER_URL_FROM_HEROKU',
// Your apps name. This will appear in the subject and body of the emails that are sent.
appName: 'MY_APP_NAME',
// The email adapter
emailAdapter: {
    module: 'parse-server-simple-mailgun-adapter',
    options: {
        // The address that your emails come from
        fromAddress: 'MY_MAILGUN_DOMAIN',
        // Your domain from mailgun.com
        domain: 'MY_MAILGUN_DOMAIN',
        // Your API key from mailgun.com
        apiKey: 'MY_API_KEY_FROM_MAILGUN',
    }
}
});

// Client-keys like the javascript key or the .NET key are not necessary with parse-server
// If you wish you require them, you can set them as options in the initialization above:
// javascriptKey, restAPIKey, dotNetKey, clientKey

var app = express();

// Serve static assets from the /public folder
app.use('/public', express.static(path.join(__dirname, '/public')));

// Serve the Parse API on the /parse URL prefix
var mountPath = process.env.PARSE_MOUNT || '/parse';
app.use(mountPath, api);

// Parse Server plays nicely with the rest of your web routes
app.get('/', function(req, res) {
    res.status(200).send('I dream of being a website.  Please star the parse-server repo on GitHub!');
});

// There will be a test page available on the /test path of your server url
// Remove this before launching your app
app.get('/test', function(req, res) {
    res.sendFile(path.join(__dirname, '/public/test.html'));
});

var port = process.env.PORT || 1337;
var httpServer = require('http').createServer(app);
httpServer.listen(port, function() {
    console.log('parse-server-example running on port ' + port + '.');
});

// This will enable the Live Query real-time server
ParseServer.createLiveQueryServer(httpServer);

1 个答案:

答案 0 :(得分:1)

在设置verifyUserEmails之前,您在livequery:{...}之后缺少逗号。由于您为电子邮件添加的块没有正确缩进,因此很难说清楚。

相关问题