这是我的第一个问题,在Stackoverflow中虽然我必须说这是非常有趣和有用的。回到这一点:
我想建立一个facebook apprequest邀请人们加入我的应用程序,这样做接受请求的人和生成它的人将获得积分奖励。
这是我的代码:
function amigo(id){
FB.ui({method: 'apprequests', message: 'AppMessage', title: 'reqTitle' , data: '<?php echo "fuente=".$id?>'});
} // where fuente = my facebook uid
我想在php中读取数据参数,这样我可以查看我的数据库中的UID并分配点但我不知道如何这样做。我已经阅读了facebook API,但事实是我无法理解那部分内容。
任何帮助都会非常感激,因为我正在与交付时钟竞争。
谢谢,
答案 0 :(得分:0)
我在Javascript中实现了如下:
function share() {
function doAfter(r) {
if(r && r.to) {
var yourUid = '<your_db_id>';
// r.to is an array of friends ids that where chosen using 'apprequests'
}
else {
// handle error
}
}
FB.ui({
method: 'apprequests',
message: 'AppMessage',
title: 'reqTitle'
}, doAfter);
}
您应Check this link This Question获取更多信息。