阅读json URL内容

时间:2013-07-18 22:27:26

标签: php json

如何阅读Facebook的JSON回复

如果我打开这个:

https://graph.facebook.com/me/votacionfoto-en:votar?access_token=XXXXXXXXXXXXXXXXX&method=POST&picture=http%3A%2F%2Fwww.enteratenorte.com%2Fconcurso%2Fpromo%2Ffoto-1.html

我明白了:

{
   "id": "10151795216148223"
}

如何将数字“10151795216148223”放在PHP var

另外,如果我打开这个:

https://graph.facebook.com/10151795216148223?access_token=XXXXXXXXXXXXXXXXX&method=DELETE

我明白了

同样的事情......我怎样才能把它放在PHP var

谢谢!

2 个答案:

答案 0 :(得分:2)

使用json_decode函数visit this link for info

答案 1 :(得分:1)

您使用json_decode和字符串连接

 $dat = json_decode($jsonstring);

 $url = "https://graph.facebook.com/10151795216148223?access_token=".$dat->id."&method=DELETE