facebook消息获取发件人姓名

时间:2012-04-17 15:04:59

标签: facebook-graph-api facebook-fql facebook-php-sdk

我使用facebook fql来获取用户邮箱。

以下查询返回所有值。

SELECT message_id, thread_id, author_id, body, created_time, attachment, 
viewer_id FROM message WHERE thread_id = <thread_id>

我想获取auther_name和viewer_name。

现在我正在使用这个技巧从ID获取名称,但它非常慢,因为首先我必须获取消息然后解析响应以获取名称。

function getName($id) 
{ 
$facebookUrl = "https://graph.facebook.com/".$id; 
$str = file_get_contents($facebookUrl); 
$result = json_decode($str); 
return $result->name; 
} 

请帮助我如何在使用FQL获取邮件时获取名称。

1 个答案:

答案 0 :(得分:2)

使用fql multiquery:https://developers.facebook.com/docs/reference/rest/fql.multiquery/

$queries = array(
    'messages' => 'SELECT message_id, thread_id, author_id, body, created_time, attachment, viewer_id FROM message WHERE thread_id = <thread_id>',
    'users' => 'SELECT name FROM profile WHERE id IN (SELECT author_id FROM #messages)',
);

$param = array(
    'method'   => 'fql.multiquery',
    'queries'  => json_encode($queries),
    'callback' => ''
);

try {
    $fqlresult = $facebook->api($param);
} catch (FacebookApiException $e) {
    echo "EXCEPTION {$e->getMessage()}\n";
}