0

我在 appcelerator 平台中遇到电子邮件验证问题。我已经正确配置了所有内容,并且在创建新用户时电子邮件会到达我的收件箱,但是由于某种原因,激活帐户的链接返回:无法确认用户。400 错误请求 - 无效的应用程序密钥

我检查了 tiapp.xml 并检查了 api 密钥是否配置正确并且一切正常。我不知道 appcelerator 如何生成此链接来验证发生了什么。在我的模板中使用以下链接:

https://cloud.appcelerator.com/users/confirmation?key= {{key}}&confirmation_token={{confirmation_token}}

我做错了什么?=[

4

2 回答 2

1

似乎文档是错误的。仅当模板中的链接为https://platform.appcelerator.com/#/users/confirmation/ {{key}}/{{confirmation_token}}时有效

于 2016-02-27T16:19:08.437 回答
0

我刚遇到同样的问题,可以在文档中确认错误。正确的网址确实是

https://platform.appcelerator.com/#/users/confirmation/{{key}}/{{confirmation_token}}

我想补充一点,密码重置网址的以下文档中可能存在类似的缺陷: http ://docs.appcelerator.com/arrowdb/latest/#!/api/Users-method-request_reset_password

文档说密码重置网址(如果使用 Appcelerator 而不是自定义网站)应该是

https://dashboard.appcelerator.com/#/users/confirmation/{{key}}/{{confirmation_token}}

这似乎是错误的(可能是从电子邮件确认 url 复制粘贴)。

于 2016-03-27T05:09:23.623 回答