I am trying to query the number of likes and shares for a particular URL. The site serves pages in both HTTP and HTTPS.
However, I noticed that HTTP and HTTPS are tracked differently. Using the following query shows the behaviour.
Output:
<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>
The link liked was the HTTPS version.
How do I get a consolidated like and share count? Or am I doing something wrong?