我需要在 asp.net 中使用 facebook dll 执行 fql。fql 是 =“select name, profile_url from user where name = 'suresh'”。当我执行此操作时,我无法得到响应。我只得到空字符串。
string response = fbService.fql.query("select name, profile_url from user where name = 'suresh'");
但如果我按 id 搜索,我可以得到回应..
那么,如何在其中按名称搜索..
谢谢 r.eswaran。