In Facebook's documentation for fql link_stats (https://developers.facebook.com/docs/reference/fql/link_stat), under Permissions it says "To read the link_stat table you need - a valid app access_token"
In the browser I can do
https://graph.facebook.com/fql?q=SELECT%20url,%20normalized_url,%20share_count,%20like_count,%20comment_count,%20total_count,commentsbox_count,%20comments_fbid,%20click_count%20FROM%20link_stat%20WHERE%20url='https://medium.com/health-the-future/918b3d08f21f'
which I got from this SO Question. As you can see there is no access token in the call.
This api call is the same as the one in the linked documentation correct? So do you or do you not need an access token to query fql via this graph api call? Am I missing something here?