I created some facebook registration page to my site. I have this code :
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=123456789&xfbml=1"></script>
<fb:registration redirect-uri="http://localhost/landing/page/"
fields="[
{'name':'name'},
{'name':'first_name'}, {'name':'last_name'},
{'name':'birthday'},
{'name':'gender'},
{'name':'location'},
{'name':'email'},
{'name':'user_name', 'description':'new username', 'type':'text'}
]"
onvalidate="validate_async"></fb:registration>
consider that facebook appId and redirect-uri are correct. and followed by :
<script>
function validate_async(form, cb) {
$.getJSON('http://graph.facebook.com/' + form.user_name + '?callback=?',
function(response) {
if (response.error) {
// Username isn't taken, let the form submit
cb();
}
cb({user_name: 'That username is taken'});
});
}
</script>
I want to validate async "user_name", its all doing fine actually. but when I try to check whether the "user_name" exist in my database, then something happen.
I change this line
$.getJSON('http://graph.facebook.com/' + form.user_name + '?callback=?',
into
$.getJSON('http://localhost/landing/page/fb_user/' + form.user_name + '?callback=?',
I want to know what is the right format of json data to be passed as the ajax response so my data can be validated correctly. or may be I got some error in my code ?
and for my 'http://localhost/landing/page/fb_user/' , I do something like this :
$user_name = $_GET('user_name');
$data = array();
$q = "SELECT * FROM 'table' WHERE user_name='$user_name'";
//consider above lines are correct to shorten the code
if($q->num_rows()) { //if user_name exist in database
$r = $q->row();
$data['user_name'] = $r->user_name;
} else {
$data['error'] = "true";
}
echo json_encode($data);
so far, I got this error from firebug console
invalid label
{"user_name":"mdennisa"}
or
invalid label
{"error":"true"}
my expected solution supposed to be a validation notification, if user exist, it will display "that username is taken", and if user is not exist, it will display nothing.
note : I use jquery 1.5.2 , reference : http://developers.facebook.com/docs/plugins/registration/advanced/