English 中文(简体)
Facebook FQL 获得来自应用程序的用户身份
原标题:Facebook FQL get user status made from an app

我想查询从 ap_ id 生成的用户状态, 但它不起作用 。

此返回不返回任何信息 :

SEECT 从状态发来的信息 在那里 uid = me () in ap_id = xxxx

问题回答

FQL 文档指出,负责张贴特定状态的申请代号的栏目是 源代码

SELECT message FROM status WHERE uid = DESIRED_USER_ID AND source = DESIRED_APP_ID

我亲自测试了它 并得到了预期的结果。





相关问题
fql.query method returns empty string in asp.net

I have developed a web application 3 months ago to show facebook users by searching username. To access facebook, I have downloaded facebook dll and got application key, and secret key from facebook. ...

how to write where condition in fql facebook using asp.net?

I need to execute a fql using facebook dll in asp.net. The fql is ="select name, profile_url from user where name = suresh ". When I execute this i could not get the response . I am getting only ...

Retrieve news feed using facebook API

Hi I have been looking for hours but cannot find the API call that retrieves a user s news feed (i.e the thing that you see at http://www.facebook.com/home.php). I think this should be something ...

Facebook Application Tab URL

I have a facebook application that can be added to fan pages as a tab. The application requires that users are authenticated in order to use it. This can be accomplished by using requirelogin=1 in a ...

Retrieve Facebook Fan Names

I m trying to grab the names of fans of a Facebook fan page that I administer. I ve done some snooping around, and apparently, the FB API doesn t support that, but Facebook actually uses AJAX/JSON to ...

Help needed - fql query in facebook api

I want to get my friends picture and their last status message with time. message,time FROM status pic_square FROM user $status = $facebook->api_client->fql_query("SELECT message,...

热门标签