客户帐户暂时禁用magento

时间:2017-01-30 14:24:34

标签: php api magento magento2

我正在尝试致电客户登录API。

{{url}}/index.php/rest/V1/integration/customer/token

身体

{
    "username" : "xxxxx@gmail.com",
    "password" : "fsfsdf"
}

我收到错误

"您未正确登录或暂时停用了您的帐户。"

但我可以通过 magento网站登录。这个错误只针对特定的电子邮件ID。请帮助我

1 个答案:

答案 0 :(得分:2)

这是mganeto 2中的一个未解决的问题。

Github

Magento2记录了使用电子邮件和错误密码(在oauth_token_request_log表中)获取令牌失败的尝试。如果failures_count列达到最大允许值(默认为6)。然后验证失败。

我已经完成的临时解决方案是运行cron作业,在数据库上执行此清理。

DELETE FROM oauth_token_request_log;

上述SQL将每隔1分钟运行一次。