Open zono opened 6 years ago
I found the bug report (https://github.com/apigee/api-platform-samples/issues/42) and description of the bug.
Note that there's a bug (#42) where certain passwords cause the registration to fail (throw a stacktrace error). For example, a password like 566559aa throws an error, while apigee123 does not. Until further notice, when trying out this sample, try using apigee123 as your password if see an error like this when you click the "Register" button. https://github.com/apigee/api-platform-samples/tree/master/sample-proxies/oauth-advanced
I used "apigee123" but still I got the same error.
I found a workaround. I changed the two files then It worked.
validateForm = function (title, firstname, lastname, email, password, verifypassword) {
var errors = [];
return errors;
};
validateLoginForm = function (username, password) {
var errors = [];
return errors;
};
Same issue. Have so far been unable to resolve.
Hi, I'm looking into how to fix my issue. Can you help me?
Summary
I tried OAuth tutorial "oauth-advanced sample". But I got an error after I clicked login button.
https://github.com/apigee/api-platform-samples/tree/master/sample-proxies/oauth-advanced
Steps to Reproduce
Expected Results
Redirect to the redirect url.
Actual Results
The following error occurred.