I am a bit confused between 2 different results.
When I want to retrieve a list of the liked URL with the graph :
$url="https://graph.facebook.com/me/likes?access_token=".$access_token;
The result is : everything I liked and they all have an id.
Than I tried to retrieve the liked URL with fql :
$fql_query_url="SELECT url FROM url_like WHERE user_id = me()";
$query = "https://api.facebook.com/method/fql.query?query=";
The result is : many different URLS (most of them are youtube ones) and some of them doesn't have an id
My questions are :
- What is the difference between these 2 requests ?
- Why some of the fql responses have an id and others not ?
- How can I get all the liked URL who have an id ?
Thank you very much for your help