Tagged Questions
The friends tag has no wiki summary.
6
votes
4answers
338 views
“friends of friends” like sql query
I am building an application where users can connect with each other (something like friends in any social network).
I am saving that connections in a table with the following structure:
id_user1 | ...
6
votes
3answers
3k views
Tagging friends in status updates from Facebook API
I recently came across this blog post that said that it's possible to tag someone in a status update from a Facebook app (= from the API):
...
6
votes
2answers
6k views
Get a list of Friends of a Friend on facebook
I've recently started looking into the Facebook API and am trying to work out how to retrieve the list of friends of another user (in this case the user is someone I'm friends with).
So far I've ...
5
votes
3answers
145 views
What operators should be declared as friends?
In some books and often around the internet I see recommendations like "operator== should be declared as friend".
How should I understand when an operator must be declared as friend and when it ...
5
votes
1answer
2k views
Tagging friends in Facebook Videos for an iPhone app
I am developing an iPhone application that allows uploading videos to Facebook. I would like to allow the user to Tag his/her friends in the video uploaded. How can I achieve this programmatically? I ...
5
votes
2answers
546 views
how to invite facebook friends from iphone application?
In my application i displayed facebook friends list and i want to invite facebook friends by using fbconnect api. Please refer me is any example code or tutorial?
3
votes
3answers
88 views
Publish to friends wall doesn't work with specified access token
We have an application that allows to users publish content to their friends wall.
It uses the user's access_token given our application.
It works stable usually, but for some reason for one of our ...
3
votes
1answer
86 views
C++: Is it possible to friend all instances of a template class?
I have a template class called RenderShader, I also have a class called Render. I would like to have all instances of the RenderShader template class to be friends with Render. Also the user is ...
3
votes
1answer
168 views
How to get Facebook friends of friends male/female ratio
I need to get the Facebook friends of friends male/ female ratio for my app. I know, there is no way to get the friends of friends list via api. But I just need to get friends of friends male/female ...
3
votes
1answer
96 views
Android. Networking app to make friends list
I have a Android app where every so often the user will rank an object e.g looks out of 5, feel out of 5, and a name. I then store this in an object and into shared prefs. I have completed this part ...
3
votes
3answers
165 views
Listing all friends and joining to the users table
I have a database named 'friends' and it has columns 'user_id' and 'friend_id'.
user_id is the invitor and friend_id the recipient. Please note that when a friendship is created I'm NOT making 2 ...
3
votes
3answers
609 views
Largest possible group of friends in common?
I'm trying to come up with the largest possible group of friends that would theoretically get along with each other, i.e., each person in the group should know at least 50% of the other people in the ...
2
votes
1answer
140 views
How can I parse a tab separated data file and group the extracted data in Perl?
I am newbie to Perl. I need to parse a tab separated text file. For example:
From name To name Timestamp Interaction
a b Dec 2 06:40:23 IST 2000 ...
2
votes
3answers
84 views
Pulling facebook friends from app
just a quick question, when using the facebook api to login to a website, can you pull a list of that users friends who have logged in using the same app id?
thanks :)
2
votes
3answers
54 views
Why is this C++ program giving compile-time error eventhough forward declaration is supplied?
Code:
#include<iostream>
using namespace std;
class MyClassOne;
class MyClassTwo
{
int myInteger;
float myFloat;
public:
void SetData(int myIntegerParameter, float ...
2
votes
1answer
55 views
Gets “One or more of your tags are not allowed” when trying to create Open Graph action with friend tags
Fairly new to Open Graph. I am able to post an action with (using the sample code from when I created the action on the dev app page):
curl -F 'access_token=xxx' \
-F ...
2
votes
2answers
225 views
how to get friends in order of number of mutual friends?
I am developing a fb application.
And I want to know how I can get friends in the order of number of mutual friends.
Is it possible with fql or any other method?
2
votes
2answers
333 views
Need Help getting list of friends using the same application in Facebook using Javascript SDK
I am extremely new to Facebook API codings and am trying to make a game application where Users will be able to see who(in their friend list) is already using the game application. It is pretty much ...
2
votes
3answers
147 views
MySQL retrieve friends of friends structure and performance
I would simply like to find a database structure in MySQL to get all users friends of friends and the corresponding query to retrieve them. (friend links are bi-directional)
I have found a couple ...
2
votes
2answers
297 views
How could I determine which are the best friends of a Facebook application user?
I'm currently trying to create a Facebook application with Facebook PHP SDK.
I would like to retreive which of the user's friends are his best friends, or the one he's most talking with.
Do you know ...
2
votes
1answer
446 views
Can I filter friends with FQL?
I'm interested in rendering only a list of friends w/ a certain sex. I'm using the query below, but not having any luck:
"SELECT name FROM user WHERE sex= $sex AND uid IN ( SELECT uid2 FROM friend ...
2
votes
3answers
662 views
setting up a friend list in mysql
I want to make a friends list in my online game. I am not sure how to set it up or where to start. The add friends and accept friends part I can handle, but I don't know how to set it up in mysql and ...
2
votes
1answer
526 views
iPhone facebook connect emails returning null
I am using the newest newest Facebook connect API for the iPhone. I am trying to get the email addresses from friends of the my app's user. I am only considering those friends of the user that are ...
2
votes
1answer
977 views
Facebook app friends users posts don't appear on my news feed
I built a Facebook app which allows users to post some news to their news feed from my website. I use Facebook Connect and the Facebook JS library.
When a friend of mine (Facebook friend) posts ...
1
vote
1answer
19 views
Auto Completion for facebook friends?
After taking all the required privileges from a user I want to display a text box where the user type his friend name and get assisted by auto-helper type functionality which shows related friends ...
1
vote
1answer
18 views
Friend Grouping
I am writing a program that fetches the links between friends on facebook and then create friendship groups from these links.
I have got as far as creating the data structure which is something like
...
1
vote
1answer
53 views
Name lookup of friend function in local class
Compiling the following:
void bar() { /* ... */ }
void foo()
{
struct MyStruct
{
friend void bar();
};
}
int main()
{
//..
}
results in the error:
error: friend ...
1
vote
1answer
128 views
getting friends Information in facebook using android
Hey Dude Below is my Request to facebook graph api which successfully give me Friend's(name,picture uri,locaion). But i need some more information about my friends like phone number,website,address.
...
1
vote
2answers
55 views
How can a class A, that is a member of class B, share private members of class B?
I have the following code:
Master.h
#ifndef MASTER_H
#define MASTER_H
class Master
{
friend class Friend;
public:
Master(void);
~Master(void);
void CallFriendFunction(int ...
1
vote
0answers
84 views
Publish on user wall and user's friends walls - marketing my app
Publish on user wall and user's friends walls - marketing my app
My app requires publish_stream.
When an user access my app first time, i want to publish "Username has been started using My Awesome ...
1
vote
1answer
44 views
public inherited template friend classes
If I have this kind of hierarchy:
#include <iostream>
using namespace std;
template<class T>
class typeB;
template<class T>
class typeA
{
// Private data
T* x_;
...
1
vote
1answer
124 views
Finding Degrees of Mutual Friends Between Non-Friends - Is it possible?
Let us assume: Users A and B use my application but they themselves are not Facebook friends and are both huge fans of the band, Cold Play.
User A searches for people who like Cold Play. The ...
1
vote
4answers
163 views
C++11 - templates, friends, decltype & access modifiers
What's up guys,
I am trying to overload the addition operator for my math vector class.
My (seemingly logically correct) simplified code is:
template<typename T>
class Vector2
{
private:
T ...
1
vote
2answers
77 views
Reusing code: friend methods with non-friend methods
I was wondering which is it's possible to re-use code for methods that have a corresponding friend version? For instance, in the example given below, both doSomething and initDoSomething methods do ...
1
vote
1answer
141 views
Django friends as many-to-many field - better storing User or UserProfile (self) in field?
I found two ways of implementing a symmetrical friendship system (you are my friend, so I am also your friend) in Django:
As suggested inside the docs:
class UserProfile(models.Model):
friends = ...
1
vote
2answers
200 views
google+ api person's friends
I am trying to make a website based on google+ api. I just started looking into the api and it seems they dont have a method to extract a person's circles and friends as facebook does. The api is ...
1
vote
0answers
307 views
Post on friend's wall using PHP SDK 3.0
I have a friend, Bob, which allowed my app for tests. The app has publish_stream perms.
publish_stream desc :
Enables your app to post content, comments, and likes to a user's stream and to the ...
1
vote
3answers
2k views
How to get Mutual Friends via Facebook's Graph API
Is there anyway to get a list of mutual friends using Facebook's Graph API? I've been playing around with tis tool and haven't yet figured out a way. However, I saw Simon's demo on Facebook's site, ...
1
vote
1answer
1k views
Facebook API Get Posts on a Friend's Wall
I'd like my Facebook app to take the ID of the user using the app, and find posts made by that ID on the wall of one of their friends (I'd prefer an example with an individual ID rather than iterative ...
1
vote
3answers
82 views
Best way to display listing of items of friends, that are hidden to everyone else, in php/mysql
I have a listing of items that are shown to everyone if the item is marked as status = 1
When items are added, their status could also be 0, which means they are invisible to everyone, unless you are ...
1
vote
0answers
318 views
Getting a friends list and notification on user status on Google Talk in Android
How do I get our friends list on Google Talk and also notifications on their status?
I heard that we have to use roster to get the friendslist and presence to get their status, but how do I use it?
...
1
vote
2answers
137 views
Rails social linking question : Why friendships?
Looking at a lot of tutorials on social linking systems in rails. I notice that there seems to be a consistent use of friends as alias for user objects, with a join model "friendships".
I followed ...
1
vote
2answers
3k views
Easiest way to get Birthday info of all friends thorugh graph api?
well I am looking for least resource intensive way of getting all friends birthday information by a given user object Id . Probably using Event Object since birthdays of friends are visible inside ...
1
vote
1answer
374 views
SQL table for friends, mutual friends, friends friends ect
I was wondering what the easiest method would be for me in the future to make queries both effective and less complex.
Should i save a two way relationship like
from_id=1, to_id=2
from_id=2, to_id=1
...
1
vote
1answer
533 views
PHP / Facebook-Api: Update Friendlist
I'm using the official PHP-Facebook-Api and I know how to get the friendlist of a user. It is basically like so:
$facebook = new Facebook(array(
'appId' => 'xxxxxxxx',
...
1
vote
0answers
86 views
Sharers parameter in Google Reader API
I´m wondering, what sharers= parameter mean in Google Reader API during broadcast-friends query and how to work with it's value.
I'm asking this way:
...
1
vote
2answers
186 views
What's a basic way of obtaining a list of friends of a certain user on Facebook? (Just their IDs)
I just want to access a full list of a user's facebook friends via the API, using PHP
Surely I won't need to authenticate this with the user, as this is public information.
1
vote
0answers
338 views
Facebook Open Invite Friends Interface
How can I open the Multi Friend selector from a Flex Application inside a Facebook IFrame please?
The interface I am looking for is this:
1
vote
3answers
714 views
facebook friends-of-friends
Quick question. How can I get the Facebook ids of the current logged in user’s second degree friends or friends-of-friends?
Sample sites that do the same behavior are the ff:
vark.com
thread.com
1
vote
2answers
422 views
iphone friends location app
What kind of api does SDK provide if we are to develop an app which keeps tracks of friends location?
Update:
CoreLocation gets the device location with the app running. But how to get the friends ...