0

Facebook からのクエリの結果をユーザー フレンドリーな方法で表示したいと考えています。

たとえば、写真のリンクではなく写真を表示したい。

これが私のコードです:

//fql query example using legacy method call and passing parameter

try{
$fql = "select name, hometown_location, sex, pic_square from user where uid=" . $user;
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult = $facebook->api($param);

}
catch(Exception $o){
d($o);

}

するとprint_r、次のように表示されます。

FQL Query Example by calling Legacy API method "fql.query" Array ( [0] => Array ( [name] => Mohamed Abdelrahman [hometown_location] => [sex] => male [pic_square] => http://profile.ak.fbcdn.net/hprofile-ak-prn1/623888_100000415601915_463726603_q.jpg ) )

または私が使用するとき:

foreach ($fqlResult as $a => $b)
{

print "$a: $b\n";
}

それは出力します:

0: Array

あなたの答えに感謝します。私はこれを自分で解決しました。ここに魂があります

foreach($fqlResult as $inner_arr)
foreach($inner_arr as $value)
echo "$value<br/>";
4

2 に答える 2

0

更新されたメソッドとコードを使用してください

//run fql query
    $fql_query_url = 'https://graph.facebook.com/'
        . 'fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()'
        . '&access_token=' . $access_token;
    $fql_query_result = file_get_contents($fql_query_url);
    $fql_query_obj = json_decode($fql_query_result, true);

https://developers.facebook.com/docs/technical-guides/fql/で完全なチュートリアルに従うことができます。

于 2013-04-12T19:54:18.087 に答える