我正在尝试使用 fql 查询对 facebooks 图形 API 进行简单调用。
$.ajax({
url: 'https://api.facebook.com/method/fql.query?query=' + encodeURIComponent('select total_count,like_count,comment_count,share_count,click_count from link_stat where url=' + 'http://www.google.se'),
success: s,
error: e
});
错误:Parser error: unexpected ':' at position 97.
有人可以解释我应该如何对 URL 进行编码吗?