|
I am developing a facebook application and i have this code here which queries the user id and other information:
Code: $users = $facebook->api(array('method' => 'fql.query', 'query' => "SELECT uid, last_name, pic_big FROM user WHERE uid IN( ...
Started by Albana_12 on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at webdeveloper):
|
|
I am developing a facebook application and i have this code here which queries the user id and other information:
Code: $users = $facebook->api(array('method' => 'fql.query', 'query' => "SELECT uid, last_name, pic_big FROM user WHERE uid IN( ...
Started by Albana_12 on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at codingforums):
|
|
I am developing a facebook application and i have this code here which queries the user id and other information:
Code:
$users = $facebook->api(array('method' => 'fql.query',
'query' => "SELECT uid, last_name, pic_big FROM user WHERE uid IN(
...
Started by احمد حسن on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at nahdacenter):
|
Ask your Facebook Friends
|
Hello all. I've read through the vague facebook multiquery guide and tried some tutorials online but haven't found an answer to this.
I'm currently using FQL to access the fb newsfeed. This is my current code which works just fine:
PHP Code: <?php
...
Started by cloudstryphe on
, 3 posts
by 1 people.
Answer Snippets (Read the full thread at codingforums):
Any ideas as to why? No ideas? anyone?.
My issue is that the code I posted isn't working .
For the situation I'm in, facebook recommends me use the 2nd method I posted .
I understand.
|
|
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,time FROM status WHERE uid in (SELECT uid2 FROM friend WHERE uid1=...
Started by anthony on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Order by time, and limit to one result.
FQL accepts MySQL-style "ORDER BY" and "LIMIT" clauses.
|
|
On the Facebook FQL pages it shows the FQL table structure, here is a screenshot below to show some of it.
You will notice that some items are an array, such as meeting_sex, meeting_for current_location. I am just curious, do you think they are storing...
Started by jasondavis on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
The thing you have to realize about FQL is that you are not querying Facebook's main data servers directly....
FQL provides a well-designed inside their database.
User-created queries on the main database would be functional suicide.
|
|
I'm building a site that allows users to sign in using their facebook account.
I want to cache nice big versions of the users profile pictures. I know that i'm not allowed to cache images for more than 24 hours so i'm going to re-fetch the images once...
Started by Martin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Consider asking users need to store their session key in your database and make queries with that, but it will mean you.
A wrapper for querying the Photo FQL table so it follows the same rules.
|
|
Hey i try to load my friends list using the Facebook connectivity api. But i didn't know the proper method to load a list i tried with
Code: NSString* fql = [NSString stringWithFormat: @"select uid,name from user where uid == %lld", session.uid]; NSDictionary...
Started by lokidil on
, 25 posts
by 12 people.
Answer Snippets (Read the full thread at iphonedevsdk):
It says it's not actually documented
Talk:Sample FQL Queries - Facebook Developer Wiki
I need help the proper method to load a list i tried with
Code: NSString* fql = [NSString stringWithFormat dictionaryWithObject:fql forKey....
|
|
Situation:
my facebook application ( http://apps.facebook.com/mymagicmirror/ ) needed to detect user's gender, and then query opposite sex or male or female
FQL:
SELECT uid, name, pic, sex FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1='.$...
Started by Unreality on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For FQL:
from the link above but with pid=166866#p166866
One is for the en_US locale (from the post before it) and the other lets you pass in the locale you want to use, like so:
public function &fql_query.
|
|
Hello, I am trying to understand how to display the total number of Facebook group members. I managed to put this code together, but when I load it the page is blank:
Code: <?php require('facebook.php'); $config = array( 'appId' => 'MYAPPID', 'secret...
Started by Mad_Griffith on
, 15 posts
by 2 people.
Answer Snippets (Read the full thread at codeguru):
So why your FQL query....
Also, the group ID you're using only has 3 members anyway .
But the moment questions after sending your FQL query.
Were it just plain PHP...that would not be an issue .
Their FQL queries work.
|