Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get the facebook registration plugin to enforce a password of 6 characters, as oposed to 8 characters requierd by default.

Client side validation works, but as the form is POST'ed, it returns an error saying that the characters need to be at least 8.

<fb:registration 
    fields="[
            {'name':'name'},
            {'name':'email'},
            {'name':'location'},
            {'name':'gender'},
            {'name':'password', 'view':'not_prefilled'},
            {'name':'phone', 'description':'Phone Number', 'type':'text'},
        ]" 
    onvalidate="fbvalidate"
    redirect-uri="{redirect url}"
    width="530">
</fb:registration>

and

<script>
function fbvalidate(form)
{
    if(typeof(form.password) == "undefined")
    {
        return {}
    }
    errors = {};
    if (form.password.length < 6) {
        errors.password = "You password must be greater than 6 characters";
    }
    return errors;
}
</script>

Seeing as the client side validation works, but as the response gets back, it contains errors, I can only assume this is a validation that facebook itself does. So, is there a way to bypass this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.