Php 如何使用facebook图形搜索api结果获取友好url?

Php 如何使用facebook图形搜索api结果获取友好url?,php,facebook,facebook-graph-api,facebook-fql,Php,Facebook,Facebook Graph Api,Facebook Fql,如果我有 [0] => Array ( [id] => 364728713652547_384117421713676 [from] => Array ( [category] => Professional services id是facebook authorid_postid 所以联系是

如果我有

 [0] => Array
            (
                [id] => 364728713652547_384117421713676
                [from] => Array
                    (
                        [category] => Professional services
id是facebook authorid_postid 所以联系是

我想在第页的butoon'76 like this'中找到76

当我将FQL用于

SELECT comment_count, like_count, share_count, click_count, total_count from link_stat where url='https://www.facebook.com/364728713652547_384117421713676'
我得到了一个结果

{"data": [
{
  "comment_count": 0, 
  "like_count": 0, 
  "share_count": 0, 
  "click_count": 0, 
  "total_count": 0
}]}
如果我点击标题 我重定向到url为的页面:

然后我再次使用FQL

SELECT comment_count, like_count, share_count, click_count, total_count from link_stat where url='https://www.facebook.com/pages/Knowles-Gripping-Services/364728713652547?ref=stream'
我得到了我想要的正确结果:

{"data": [{
  "comment_count": 0, 
  "like_count": 76, 
  "share_count": 0, 
  "click_count": 0, 
  "total_count": 76
}]}
那么,有人知道有没有办法在facebook api中获取“重定向页面url”?(我不想使用php和读取http头) 或者用post\u id获得类似的计数? 多谢各位