English 中文(简体)
Face 朋友图片/假日等名字都是ok。
原标题:Facebook friends picture/brithday etc names are ok

我正在利用以下工作,以展示朋友姓名。

$access_token = "___access-token___";
$friendsList = json_decode(file_get_contents("https://graph.facebook.com/me/friends?access_token=".$access_token),true) ;
$data = $friendsList[ data ] ;

foreach ($data as $nr => $friends)
{
 echo $friends[ name ]. <br /><br /> ;  // line AAA     
}

但是,如果试图改变AAA的行程,例如:朋友[生育日]或朋友[照片]。 我没有吗? 任何想法?

BTW,Re birthday,我有朋友——亲爱的日子,允许这种胎儿。

最佳回答

直接在请求中界定被通缉的领域:

https://graph.facebook.com/me/friends/?fields=birthday,picture

如果允许你见到朋友的生日,那就会导致结果的流逝。

问题回答

友善仅包括姓名和补助金,你必须将其与用户桌相连接,通过利用朋友的帮助,使朋友的出生日。

https://graph.facebook.com/me/friends will return list of friends with id-name only.

if you want basic profile for each friend
- call https://graph.facebook.com/friend_user_id

to get extended profile
call https://graph.facebook.com/friend_user_id?access_token=append_valid_access_token

if you want much more extensive profile details, you will need to have necessary permissions see; https://developers.facebook.com/docs/authentication/permissions/





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签