使用Parse服务器设置密码重置时出错

问题描述:

我正在使用mongoDB托管在Heroku上的Parse服务器。我努力使密码重置功能正常工作。我遵照指示并将以下代码添加到index.js。添加此代码后,当应用程序启动或我尝试发送电子邮件时,出现此错误:JSON text did not start with array or object and option to allow fragments not set.使用Parse服务器设置密码重置时出错

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

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); 
+0

我认为你需要把这个json放在一个{}中,但是只有这个代码不在上下文中。请问,你可以放更多的代码吗?例如:var api = new ParseServer ... –

+0

您也可以使用一些在线工具来验证您的json。 –

+0

谢谢@ClaudioCastro。这是我添加的唯一代码。单独将此代码添加到我的index.js文件时,会导致应用程序启动时发生错误。 – m1234

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

+0

当然。谢谢! – m1234