每 30 到 50 名参与者中就有 1 人未能收到用户的电子邮件数据

发布于 2024-12-17 20:10:12 字数 526 浏览 0 评论 0原文

以下是APP审核通过后加载Facebook用户邮箱的代码源码。 存在的问题是,每30到50个参与者中就有1个未能收到用户的电子邮件数据。 您能帮我们检查一下代码源来解决这个问题吗?

// FQL Call
$fql = "SELECT email, name from user where uid = ".$facebook_id;
$profile = $facebook->api(array(
           "method" => "fql.query",
           "query" => $fql,
));

$name = $profile[0]["name"];
$email = $profile[0]["email"];

// Registration
$query = "INSERT INTO `facebook_data` (`name`, `email`) VALUES ('".$name."', '".$email."');";
$result = mysql_query($query);

谢谢你!

Following is the code sources that loading the Facebook user’s email after the approval of the APP.
There is the problem that we are fail to receive an user’s email data 1 in every 30 to 50 participants.
Could you please check the code sources for us to solve this problem?

// FQL Call
$fql = "SELECT email, name from user where uid = ".$facebook_id;
$profile = $facebook->api(array(
           "method" => "fql.query",
           "query" => $fql,
));

$name = $profile[0]["name"];
$email = $profile[0]["email"];

// Registration
$query = "INSERT INTO `facebook_data` (`name`, `email`) VALUES ('".$name."', '".$email."');";
$result = mysql_query($query);

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文