- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
今天我设置了 mailgun 以在我的解析服务器上启用密码重置和验证电子邮件。
在对验证电子邮件无法正常工作的原因进行了一个小时的故障排除后,我尝试了密码重置,发现密码重置工作正常。
我试过向新用户和老用户发送验证邮件,但没有成功。 Mailgun 适配器设置应该没问题,因为它可以发送密码重置电子邮件。目前我无法在验证邮件中找到解决方案。
服务器在 Bluemix(类似于 Heroku)上运行。设置了以下环境变量(我没有列出所有内容,因为它包含 key ,并且由于重置密码有效,因此必须正确设置它们):
EMAIL_VERIFY_TOKEN_VALIDITY_DURATION = 7200
VERIFY_USER_EMAIL = true
我的 index.js 文件:
'use strict';
// Required Libs
require('dotenv').config()
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
var express = require('express');
var ParseServer = require('parse-server').ParseServer;
var http = require('http');
// Start Express
var app = express();
// Validate Keys
if (!process.env.APP_ID) {
throw 'Please apply the Application ID from Parse.com';
}
if (!process.env.MASTER_KEY) {
throw 'Please apply the Master Key from Parse.com';
}
if (process.env.DATABASE_URI) {
var databaseUri = process.env.DATABASE_URI;
} else if (process.env.VCAP_SERVICES) {
var vcapServices = JSON.parse(process.env.VCAP_SERVICES);
const pattern = /mongo/i;
for (var i = 0; i < vcapServices['user-provided'].length; i++) {
if (vcapServices['user-provided'][i].name.search(pattern) >= 0 ||
vcapServices['user-provided'][i].credentials.uri.search(pattern) >= 0) {
var databaseUri = 'mongodb://' +
vcapServices['user-provided'][i].credentials.user +
':' + vcapServices['user-provided'][i].credentials.password +
'@' + vcapServices['user-provided'][i].credentials.uri;
break;
}
}
} else {
throw 'Please provide DATABASE_URI to an instance of MongoDB or deploy to Bluemix with a Compose MongoDB service';
}
// Server Location
var port = process.env.VCAP_APP_PORT || process.env.PORT || 1337;
var host = process.env.VCAP_APP_HOST || 'localhost';
var mountPath = process.env.PARSE_MOUNT || '/';
//var serverUrl = ((process.env.HTTPS) ? 'https://' : 'http://') + host + ':' + port + mountPath;
var publicServerUrlRoot = process.env.PUBLIC_SERVER_URL || host
var publicServerUrl = ((process.env.HTTPS) ? 'https://' : 'http://') + publicServerUrlRoot + mountPath;
// Specify the connection string for your mongodb database
// and the location to your Parse cloud code
var parseConfig = {
databaseURI: databaseUri,
appId: process.env.APP_ID,
masterKey: process.env.MASTER_KEY,
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
serverURL: publicServerUrl,
// Setup email verification
verifyUserEmail: process.env.VERIFY_USER_EMAIL || true,
emailVerifyTokenValidityDuration: process.env.EMAIL_VERIFY_TOKEN_VALIDITY_DURATION || 2 * 60 * 60,
publicServerURL: publicServerUrl,
appName: process.env.APP_NAME,
emailAdapter: {
module: 'parse-server-simple-mailgun-adapter',
options: {
// The address that your emails come from
fromAddress: process.env.DEFAULT_FROM_ADDRESS,
// Your domain from mailgun.com
domain: process.env.MAILGUN_DOMAIN,
// Your API key from mailgun.com
apiKey: process.env.MAILGUN_API_KEY,
}
}
};
// Optional Keys
if (process.env.FILE_KEY) {
// String
parseConfig.fileKey = process.env.FILE_KEY;
}
if (process.env.CLIENT_KEY) {
// String
parseConfig.clientKey = process.env.CLIENT_KEY;
}
if (process.env.JS_KEY) {
// String
parseConfig.javascriptKey = process.env.JS_KEY;
}
if (process.env.REST_KEY) {
// String
parseConfig.restAPIKey = process.env.REST_KEY;
}
if (process.env.DOTNET_KEY) {
// String
parseConfig.dotNetKey = process.env.DOTNET_KEY;
}
if (process.env.ALLOW_CLIENT_CLASS_CREATION) {
// Boolean
parseConfig.allowClientClassCreation = process.env.ALLOW_CLIENT_CLASS_CREATION;
}
if (process.env.ENABLE_ANONYMOUS_USERS) {
// Boolean
parseConfig.enableAnonymousUsers = process.env.ENABLE_ANONYMOUS_USERS;
}
if (process.env.OAUTH) {
// Object: https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide#oauth
parseConfig.oauth = process.env.OAUTH;
}
if (process.env.FACEBOOK_APP_IDS) {
// Array
parseConfig.facebookAppIds = process.env.FACEBOOK_APP_IDS;
}
// Create Parse Server instance
var api = new ParseServer(parseConfig);
// Serve the Parse API on the / URL prefix
app.use(mountPath, api);
// And listen to requests
app.listen(port, function() {
//console.log('parse server url ' + serverUrl);
console.log('parse public server url ' + publicServerUrl);
console.log('parse-server running on port ' + port + '.');
});
require("cf-deployment-tracker-client").track();
我使用两种方法验证用户电子邮件:
我已启用匿名用户,并且已将 PFSignUpViewController 子类化。子类化唯一要做的就是改变颜色和字体。服务器端设置为验证用户电子邮件,因此当用户自动注册时应发送一封电子邮件。
注册后,我在服务器日志中得到以下信息:
RTR/1kitespotterparseserver.mybluemix.net - [17/10/2016:08:27:35.196 +0000] "POST /parse/users HTTP/1.1" 201 85 116 "-" "KiteSpotter/623 CFNetwork/758.4.3 Darwin/15.5.0" 169.54.202.26:49150 x_forwarded_for:"37.6.22.73" x_forwarded_proto:"https" vcap_request_id:58e37dd1-42ac-4c08-4704-44983ab869fb response_time:0.429154539 app_id:9fe504a4-346d-4c67-a268-ef61a25cc006 x_global_transaction_id:"3652227649"
不幸的是,没有收到电子邮件,而且 mailgun 上也没有任何记录。所以服务器永远不会到达 mailgun。
要向用户重新发送验证电子邮件,我使用以下代码(在客户端):
class func resendVerificationEmail(_ block: @escaping (_ success: Bool) -> Void) {
if let email = PFUser.current()?.email {
PFUser.current()?.email = email+".verify"
PFUser.current()?.saveInBackground(block: { (success, error) -> Void in
if success {
Log.info?.message("Verify Email. Temp email saved.")
PFUser.current()?.email = email
PFUser.current()?.saveInBackground(block: { (success, error) in
if success {
Log.info?.message("Verify Email. New email saved.")
} else {
Log.error?.message("Verify Email. New email save failed.\n\(error?.localizedDescription)")
}
block(success)
})
} else {
Log.error?.message("Verify Email. Temp email save failed.")
block(success)
}
})
}
}
--
class func verifyEmailAction(_ notifyVC: UIViewController?) -> UIAlertAction {
let emailVerificationAction = UIAlertAction(title: "Verify Email", style: UIAlertActionStyle.default) { (action) in
ParseLoginHelper.resendVerificationEmail({ (success) -> Void in
let alertController: UIAlertController
if success {
alertController = UIAlertController(title: "Verification Email Sent", message: "Sent to \(StringOrEmpty(PFUser.current()?.email))\nPlease check your emails", preferredStyle: .alert)
} else {
alertController = UIAlertController(title: "Verification Email Failed", message: nil, preferredStyle: .alert)
}
let OKAction = UIAlertAction(title: "Dismiss", style: .default, handler: nil)
alertController.addAction(OKAction)
notifyVC?.present(alertController, animated: true, completion: nil)
})
}
return emailVerificationAction
}
一旦发送到解析服务器,服务器日志中就会出现以下内容:
RTR/0kitespotterparseserver.mybluemix.net - [17/10/2016:08:30:14.104 +0000] "PUT /parse/classes/_User/clCOWBsNLz HTTP/1.1" 200 72 40 "-" "KiteSpotter/623 CFNetwork/758.4.3 Darwin/15.5.0" 169.54.202.27:33533 x_forwarded_for:"37.6.22.73" x_forwarded_proto:"https" vcap_request_id:4c3e8056-9d70-4b1d-5c15-8a97c616f5ad response_time:0.449085887 app_id:9fe504a4-346d-4c67-a268-ef61a25cc006 x_global_transaction_id:"2500672239" 2016-10-17T11:30:14.554+0300
RTR/0kitespotterparseserver.mybluemix.net - [17/10/2016:08:30:14.959 +0000] "PUT /parse/classes/_User/clCOWBsNLz HTTP/1.1" 200 37 40 "-" "KiteSpotter/623 CFNetwork/758.4.3 Darwin/15.5.0" 169.54.202.27:33640 x_forwarded_for:"37.6.22.73" x_forwarded_proto:"https" vcap_request_id:3bbd5653-05f3-46ce-79ad-9772741fbdcf response_time:0.631187244 app_id:9fe504a4-346d-4c67-a268-ef61a25cc006 x_global_transaction_id:"3241831095"
在 iOS 应用程序上,我会弹出一个“已发送验证电子邮件”和以下日志:
2016-10-17 11:30:14.858 am EEST | INFO | ParseLogin.swift:51 - Verify Email. Temp email saved.
2016-10-17 11:30:15.953 am EEST | INFO | ParseLogin.swift:55 - Verify Email. New email saved.
再一次,mailgun 上没有任何记录。
这是一个在 parse.com 上运行良好的技巧。
如果我请求为用户重设密码。这是从解析注册页面完成的。我得到以下信息:
服务器日志
RTR/1kitespotterparseserver.mybluemix.net - [17/10/2016:08:38:03.159 +0000] "POST /parse/requestPasswordReset HTTP/1.1" 200 37 2 "-" "KiteSpotter/623 CFNetwork/758.4.3 Darwin/15.5.0" 169.54.202.26:52006 x_forwarded_for:"37.6.22.73" x_forwarded_proto:"https" vcap_request_id:f37a23a9-17eb-473e-4439-dd6b3f8f2176 response_time:0.140150335 app_id:9fe504a4-346d-4c67-a268-ef61a25cc006 x_global_transaction_id:"2067630247"
客户端日志
没有
邮枪日志
10/17/16 04:38 AM Delivered: postmaster@mg.paz-labs.com → kitespotter2@paz-labs.com 'Password Reset for KiteSpotter'
10/17/16 04:38 AM Accepted: postmaster@mg.paz-labs.com → kitespotter2@paz-labs.com 'Password Reset for KiteSpotter'
还有一封电子邮件,其中包含有关如何重设密码的说明。
最佳答案
解决方案非常简单。这是 index.js
文件的拼写错误。
verifyUserEmail: process.env.VERIFY_USER_EMAIL || true,
应该是
verifyUserEmails: process.env.VERIFY_USER_EMAIL || true,
在我看来,我应该在第一个错误上遇到编译或运行时错误,但我没有得到。
关于node.js - 带有 mailgun 适配器的解析服务器 - 我怎样才能让验证电子邮件工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39891896/
谁能解释一下 Server.MapPath(".")、Server.MapPath("~")、Server.MapPath(@"之间的区别\") 和 Server.MapPath("/")? 最佳答案
我不知道,为什么我们要使用 Server.UrlEncode() & Server.UrlDecode()?!在 QueryString 中我们看到 URL 中的任何内容,那么为什么我们要对它们进行编
我已经通过 WHM 在我的一个域上安装了 ssl 证书。网站正在使用 https://xyz.com . 但是它不适用于 https://www.xyz.com .我已经检查了证书,它也适用于 www
我已经使用 WMI 检测操作系统上是否存在防病毒软件,itz 正常工作并通过使用命名空间向我显示防病毒信息,例如 win xp 和 window7 上的名称和实例 ID:\root\SecurityC
我们有 hive 0.10 版本,我们想知道是否应该使用 Hive Server 1 或 Hive Server2。另一个问题是连接到在端口 10000 上运行的 Hive 服务器,使用 3rd 方工
我想在 C++ 中使用 Windows Server API 设置一个 HTTPS 服务器,我使用了示例代码,它在 HTTP 上工作正常,但我就是不能让它在 HTTPS 上工作。 (我不想要客户端 S
我写了一个非常基本的类来发送电子邮件。我用 smtp 服务器对其进行了测试,它工作正常,但是当我尝试使用我公司的交换服务器时,它给出了这个异常: SMTP 服务器需要安全连接或客户端未通过身份验证。服
我的应用程序包含一个“网关”DataSnap REST 服务器,它是所有客户端的第一个访问点。根据客户端在请求中传递的用户名(基本身份验证),请求需要重定向到另一个 DataSnap 服务器。我的问题
我有一个 Tomcat 服务器和一个 Glassfish4 服务器。我的 Servlet 在 Tomcat 服务器上启动得很好,但在 Glassfish4 服务器上给我一个“HTTP Status 4
我在 vmware 上创建了一个 ubuntu 服务器。我用它作为文件服务器。如果我通过托管虚拟机的计算机进行连接,则可以访问它。我无法从同一网络上的其他计算机执行此操作。提前致谢! 最佳答案 首先确
如何重启 Rails 服务器?我从 开始 rails server -d 所以服务器是分离的 我知道的唯一方法就是去做ps 辅助 | grep rails 并 kill -9关于过程#但是像这样杀死进
我实际上正在尝试找到编写一个简单的 XMPP 服务器的最佳方法,或者找到一个占用空间非常小的服务器。我只关心XMPP的核心功能(状态、消息传递、群组消息传递)。目前还在学习 XMPP 协议(proto
我实际上正在尝试找到编写简单 XMPP 服务器的最佳方法,或者找到一个占用空间非常小的方法。我只关心 XMPP 的核心功能(统计、消息、组消息)。目前也在学习 XMPP 协议(protocol),所以
我们正在尝试从 Java JAX-RS 适配器访问 SOAP 1.1 Web 服务。 我们正在使用从 WSDL 生成的 SOAP 客户端。 但是当解码 SOAP 故障时,我们得到以下异常: ... C
目前,我和许多其他人正在多个平台(Windows、OS X 和可能的 Linux)上使用 Python HTTP 服务器。我们正在使用 Python HTTP 服务器来测试 JavaScript 游戏
我有一个连续运行的服务器程序(C#/.NET 2.0 on Linux with mono),我想从 PHP 脚本连接到它以在网站上显示状态信息。 目的是创建一个(某种)实时浏览器游戏(无 Flash
所以我有一个单页客户端应用程序。 正常流程: 应用程序 -> OAuth2 服务器 -> 应用程序 我们有自己的 OAuth2 服务器,因此人们可以登录应用程序并获取与用户实体关联的 access_t
我们刚刚将测试 Web 服务器从 Server 2008 升级到 Server 2012 R2。我们有一个部署我们网站的批处理脚本。当它将站点推送到服务器时,它现在失败了。奇怪的是,我可以使用相同的发
建议一些加载SpagoBI服务器的方法,我尝试了所有方法来解析spagobi服务器。在 Catalina 中,错误是 - * SEVERE: Unable to process Jar entry [
当我们点击应用程序服务器(apache tomcat)时,它会创建一个线程来处理我们的请求并与 tomcat 连接,建立连接,tomcat 创建另一个线程来处理请求并将其传递给连接,连接线程将其传递给
我是一名优秀的程序员,十分优秀!