使用http和https查询Facebook link_stat的结果不同

时间:2012-02-09 16:45:22

标签: facebook

我正在尝试查询特定网址的喜欢和分享数量。该网站以HTTP和HTTPS提供页面。

但是,我注意到HTTP和HTTPS的跟踪方式不同。使用以下查询显示行为。

https://api.facebook.com/method/fql.query?query=SELECT%20like_count,share_count%20FROM%20link_stat%20WHERE%20url%20IN%20%28%22www.oyezdigital.com/dwmoment/Gallery/Photo/10%22,%22https://www.oyezdigital.com/dwmoment/Gallery/Photo/10%22%29

输出:

<fql_query_response list="true">
    <link_stat>
        <like_count>0</like_count>
        <share_count>0</share_count>
    </link_stat>
    <link_stat>
        <like_count>1</like_count>
        <share_count>1</share_count>
    </link_stat>
</fql_query_response>

喜欢的链接是HTTPS版本。

如何获得统一的匹配和分享计数?或者我做错了什么?

1 个答案:

答案 0 :(得分:0)

我建议您在应用中显示“赞”和“share_count”时合并结果。