我在appcelerator平台上遇到电子邮件验证问题。我已正确配置所有内容,并且在创建新用户时电子邮件会到达我的收件箱,但由于某种原因,激活帐户的链接会返回:无法确认用户。 400错误请求 - 无效的应用密钥
我检查了tiapp.xml并检查api密钥是否配置正确且一切正常。我不知道appcelerator如何生成此链接以验证发生了什么。在我的模板中使用以下链接:
https://cloud.appcelerator.com/users/confirmation?key= {{键}}&安培; confirmation_token = {{confirmation_token}}
我做错了什么? = [
答案 0 :(得分:1)
似乎文档错误。仅当模板中的链接为https://platform.appcelerator.com/#/users/confirmation/ {{key}} / {{confirmation_token}}
时才有效答案 1 :(得分:0)
我刚遇到同样的问题,可以确认文档中的错误。确实是正确的网址
https://platform.appcelerator.com/#/users/confirmation/{{key}}/{{confirmation_token}}
我想补充一点,密码重置网址的以下文档中可能存在类似的缺陷: http://docs.appcelerator.com/arrowdb/latest/#!/api/Users-method-request_reset_password
文档说密码重置URL(如果使用Appcelerator而不是自定义网站)应为
https://dashboard.appcelerator.com/#/users/confirmation/{{key}}/{{confirmation_token}}
似乎错了(也许是从电子邮件确认网址复制粘贴)。