Alright, there are a lot of moving parts here, so I will try to be as thorough as possible.
To start, there is an tag on my site, which is designated to post a dynamically loaded photo to facebook.
<a onclick=\"postToFacebook('"+photoURL+"');\"><img src='facebook-icon.png'/></a>
The stripped down javascript function that is called when this link is clicked looks like this:
function postToFacebook(photoURL) {
contentCode += "<div id='overlay-col2'><input type='text' id='facebook-caption-textbox' name='facebook-caption-textbox' class='textbox-wide inactive' value='Caption'/>";
contentCode += "<textarea id='facebook-message-textarea' name='facebook-message-textarea' class='textarea-wide inactive'>Say something about this photo...</textarea>";
contentCode += "<a class='overlay-submit-btn' onclick=\"submitFacebookPosting('"+photoURL+"');\">Post to Facebook</a></div>";
$("#overlay-body-content").empty().html(contentCode);
}
What this code does is creates populates an overlay window with a small web form that enables the user to enter in a caption for the photo, as well as a textarea to say a little something about the photo. As you can see, when they hit the submit link, another javascript function is called: submitFacebookPosting(). That function looks like this:
function submitFacebookPosting(photoURL) {
var photoCaption = $("#facebook-caption-textbox").attr("value");
var photoMessage = $("#facebook-message-textarea").val();
$.ajax({
url: 'postToFacebook.php',
type: 'POST',
data: ({photoURL:photoURL, photoCaption:photoCaption, photoMessage:photoMessage}),
success: function(data) {
if (data == "success") {
alert("Photo has been posted to your Facebook Wall.");
} else {
alert(data);
}
}
});
}
Finally, there is the file, postToFacebook.php, which is considerably longer. The contents of that look like this:
<?php
$photoURL = $_POST['photoURL'];
$caption = $_POST['photoCaption'];
$message = $_POST['photoMessage'];
$fbconfig['appid' ] = "--hidden--";
$fbconfig['secret'] = "--hidden--";
$fbconfig['baseurl'] = "http://www.jhublerdesign.com/proofStar/dashboard.php";
$user = null;
try {
include_once "facebook.php";
} catch(Exception $o) {
error_log($o);
}
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => true,
));
$user = $facebook->getUser();
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => 'email,offline_access,publish_stream,user_birthday,user_location,user_work_history,user_about_me,user_hometown',
'redirect_uri' => $fbconfig['baseurl']
)
);
$logoutUrl = $facebook->getLogoutUrl();
if ($user) {
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
d($e);
$user = null;
}
}
if ($user) {
try {
$publishStream = $facebook->api("/$user/feed", 'post', array(
'message' => "This photo has been posted from ProofStar!",
'link' => $photoURL,
'picture' => $photoURL,
'name' => 'DSC_1234',
'description'=> $message
));
echo "success";
} catch (FacebookApiException $e) {
echo $e;
}
}
?>
So, with all of that said - whenever I submit the form to AJAX, it returns as an error, but does not show me what error it is, and it most certainly does not post to Facebook.
Any ideas what I am missing? Any help would be appreciated! Thank you!