嘿,我有一個問題...共享一個FB-鏈接後,插入MySQL的不工作
我想,當用戶已經分享了我的Facebook應用程序的鏈接,我得到他的身份證到我D b。
我分享鏈接的方式是通過Facebook的對話框中的JavaScript的例子,我已經修改
共享javascript代碼
<script>
FB.init({appId: 'xxxx', channelUrl: 'xxxx', status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
document.getElementById('post').style.display = "none";
}
}
xmlhttp.open("POST","shared.php",true);
xmlhttp.send("id=xxx");
}
FB.ui(obj, callback);
}
</script>
PHP代碼
$con = mysqli_connect("xxxx","xxx","xxx","xxx");
if (!$con) {
die('Could not connect: ' . mysql_error());
};
mysqli_query($con, "INSERT INTO xxx (fb-id) VALUES (".$_POST['id'].")");
mysqli_close($con)
當我已經共享鏈接我得到了post_id,但沒有在數據庫中?
有人可以告訴什麼是錯的嗎?
您可能想確認Facebook的政策允許您存儲該用戶的ID。 – Madbreaks
我也允許存儲userIDs,但不是他們的用戶名和密碼;) –