Hopefully someone can help. I'm using the Facebook Javascript SDK (don't want to use the PHP version for certain reasons) - to connect and pull in profile information.
Upon page visit the profile information is captured and sent to a facebook.php file via Ajax. I've checked it in Firebug and can see both the original JSON object and the POST that display correctly.
How do I go about retrieving this information to get access to the user name and email in order to create a new user in wordpress?
Below is the code from the actual page:
// LOAD FACEBOOK JAVASCRIPT SDK
(function(d){
var js, id = 'facebook-jssdk';
if (d.getElementById(id)) {return;};
js = d.createElement('script');
js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document)); // END JS SDK LOAD FUNCTION
// PULL FACEBOOK USER INFORMATION
window.fbAsyncInit = function() {
FB.init({ appId : 'xxx', status : true, cookie : true, xfbml : true });
// ACCESS FACEBOOK API AND RETRIEVE PROFILE
FB.api('/me', function(apiresponse){ console.log(apiresponse);
// POST AJAX FB INFO TO CUSTOM PHP HANDLER
$.ajax({
url: "<?php echo get_template_directory_uri(); ?>/facebook.php",
type: 'POST',
cache: 'false',
data: JSON.stringify(apiresponse),
dataType: 'json',
success: function(data) {
console.log(data);
}
});
});
}; // END PULL FACEBOOK INFORMATION
Here's the actual PHP script:
header('Content-type: application/json');
$res = json_decode($_POST['apiresponse'], true);
echo $res;
In Firebug it displays the correct headers and POST information (as a JSON object), but I can't seem to figure out how to convert this into usable data which can be passed back to the WordPress page. Below is the object as shown in Firebug:
{"id":"702658737","name":...
JSON
birthday "05/06/1949"
email "aaron*************"
first_name "Aaron"
gender "male"
id "702658737"
last_name "******"
link "http://www.facebook.com/*********"
locale "en_US"
Location Object { id="***************", name="Los Angeles, California"}
name "Aaron **********"
timezone -7
updated_time "2011-10-22T18:40:02+0000"
username "*********"
verified true
That's where I'm stuck. I can't figure out how to extract all of this information and break it down into separate variables. On the original page (which is in WordPress) I need to grab the Name and Email in order to create a new user.
wp_create_user ($user, "defaultpassword", $email);
When I echo $res I only get NULL. I'm very new to PHP outside of WordPress, so I've tried a number of different things. (serialize) gives me the RESPONSE of N; ??? I was told I'm seeing a PHP object, but after looking around, I have no idea how to convert this object in order to use it for what I'm looking for.
Thanks!