在我的Facebook应用程序中,我使用fb请求表单,我想知道用户已向任何人发送好友请求或只是跳过该页面。
代码是
<fb:serverFbml width= "620" style="float:center">
<script type="text/fbml">
<fb:fbml>
<fb:request-form
action='<?php echo $config["base_url"]."?action=3;?>'
target="_top"
method="POST"
invite="true"
type="....some thing"
content="...some thing"
>
<fb:multi-friend-selector target="_top"
showborder="false"
actiontext="----" rows='4' cols='4' max='1' import_external_friends = "false">
</fb:request-form>
</fb:fbml>
</script>
</fb:serverFbml>
正如开发人员文档所述,如果用户发送请求或跳过请求页面,它将转到操作URL。有没有什么可以区分这两种情况。
请忽略任何英语语法错误。 提前致谢。
答案 0 :(得分:0)
您正在寻找的信息很可能包含在服务器响应中,请进行检查。
顺便说一句,FBML很快就会被弃用,所以如果这是一个新的应用程序,你最好切换到JavaScript SDK。