My facebook app suddenly stopped sending messages and I didn't change anything. This is my code:
<script type="text/javascript">
function logResponse(response) {
if (console && console.log) {
console.log('The response was', response);
}
}
$(function(){
// Set up so we handle click on the buttons
$('#postToWall').click(function() {
FB.ui(
{
method : 'feed',
link : '<?php echo "$link"; ?>',
name : 'name',
caption: ' ',
description: 'description',
actions: [{
'name':'Enter to win',
'link':'<?php echo "$link"; ?>'
}]
},
function (response) {
// If response is null the user canceled the dialog
if (response != null) {
logResponse(response);
}
}
);
});
$('#sendToFriends').click(function() {
FB.ui(
{
method : 'send',
name : 'name',
description: 'description',
link : $(this).attr('data-url')
},
function (response) {
// If response is null the user canceled the dialog
if (response != null) {
logResponse(response);
}
}
);
});
$('#sendRequest').click(function() {
FB.ui(
{
method : 'apprequests',
message : $(this).attr('data-message')
},
function (response) {
// If response is null the user canceled the dialog
if (response != null) {
logResponse(response);
}
}
);
});
});
</script>
The code that you see above and below was taken form a heroku sample app and I just made some modifications and It was sending messages, then it suddenly stop working
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo AppInfo::appID(); ?>', // App ID
channelUrl : '//<?php echo $_SERVER["HTTP_HOST"]; ?>/app/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<?php if ($user_id) { ?>
<div id="share-app" align="center"><!--share app-->
<br>
<a href="#" class="facebook-button" id="postToWall">
<span class="plus">Post to Wall</span>
</a>
<a href="#" class="facebook-button speech-bubble" id="sendToFriends" data-url="<?php echo "$link";?>">
<span class="speech-bubble">Send Message</span>
</a>
<a href="#" class="facebook-button apprequests" id="sendRequest" data-message="message">
<span class="apprequests">Send Invite Requests</span>
</a>
<br>
<?php } ?>
I was comparing both codes, the original and the modified one, but I don't see anything wrong.
Do you know why this doesn't work?