如何阅读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
上谢谢!
答案 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