I am integrating facebook registration plug-in by using c# 2010 I am able to add custom fields as well as reading signed request. Now I want to add async validation to check either a username is available or not. Following is the script I am using
<body>
<fb:login-button
registration-url="http://developers.facebook.com/docs/plugins/registration" />
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=***********&xfbml=1"></script>
<fb:registration redirect-uri="http://localhost:1913/urecommendme/test3.aspx/"
fields='[{"name":"name"},
{"name":"username","description":"Username","type":"text"}]'
onvalidate="validate_async"></fb:registration>
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script>
function validate_async(form, cb) {
$.getJSON('http://graph.facebook.com/' + form.username + '?callback=?',
function (response) {
if (response.error) {
// Username isn't taken, let the form submit
cb();
}
cb({ username: 'That username is taken' });
});
}
</script>
</body>
When I press the register button, the form disappears and nothing happens. Can someone please tell me if I am handling this correctly? Also, I don’t know where I should specify the path/name of my server side script, which is where I have written c# code to check username availability.