|
|
|
สอบถามคนที่ทำ application บน facebook รบกวนหน่อยนะค่ะ |
|
|
|
|
|
|
|
จะทำการ ตรวจสอบว่า user เป็น fan page หรือยัง
Code (PHP)
FB.api({
method: "pages.isFan",
page_id: my_page_id,
}, function(response) {
console.log(response);
if(response){
alert('You Likey');
} else {
alert('You not Likey :(');
}
}
);
หรือ
FB.api(
{
method: 'fql.query',
query: 'SELECT uid FROM page_fan WHERE uid=xxxxx AND page_id=xxxxx'
},
function(data) {
alert(data[0].uid);
}
);
ไม่สามารถรันได้บน ie ค่ะ error ประมาณว่าไม่มีการ identifine ค่า ค่ะ แต่สามารถรันได้บน chorme ค่ะง
โค้ดหน้าที่ใช้ test ค่ะ
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
FB.init({appId:'my_page_id',status:true,cookie:true,xfbml:true});
FB.api({
method: "pages.isFan",
page_id: my_page_id,
}, function(response) {
console.log(response);
if(response){
alert('You Likey');
} else {
alert('You not Likey :(');
}
}
);
</script>
Tag : PHP, JavaScript, Action Script, jQuery
|
|
|
|
|
|
Date :
2011-07-22 07:43:33 |
By :
Pep_Fare |
View :
889 |
Reply :
0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|