How To Get My Friends Using My Facebook App With Graph Api
Feb 16, 2011
i'm using Facebook C# SDK i can get my friends like;
JsonObject friends = (JsonObject)facebook.Api("me/friends?");
But i couldn't get my friends which uses my application how can i get them?
View 2 Replies
Similar Messages:
Dec 25, 2013
How I can get the friend of my friends on facebook ? i use this : FaceBookConnect.Fetch(code, "me/friends") to get my friend. What is the change i can do to get the friends of my friends on facebook .
Example : I am friend with samie . How I can get the friend of samie on facebook .
View 1 Replies
Dec 26, 2013
I have two friends in facebook
the name of the first friend is : jad .
the name of the second friend is :rima .
How I can get the mutual friend list between jad and rima .
View 1 Replies
Nov 15, 2012
how to post feed OUR wall. now, my friend wall, using their ID.tried with
FaceBookConnect.Post(ViewState["Code"].ToString(), "/<friend ID>/feed", data);
--> failed :-(
FaceBookConnect.Post(ViewState["Code"].ToString(), "/<friend ID>/notes", data);
--> also failed
also tried with : "/<friend ID>/notes" which also failed.
View 1 Replies
Jan 22, 2013
I was implementing codes taken from[URL] .... and [URL] ....
It works fine separatly but when i want to integrate it gives me an error "Bad Request......"at so how can i get user info and his friend list on login button.
protected void Login(object sender, EventArgs e)
{
FaceBookConnect.Authorize("user_photos,email,friends_photos", Request.Url.AbsoluteUri.Split('?')[0]);
}
protected void Page_Load(object sender, EventArgs e)
[Code] ....
View 1 Replies
Apr 29, 2010
How to get friends Email id from facebook using asp.net code
View 2 Replies
Jul 5, 2010
to build the functionality whereby if a user supplies login information to facebook within an asp.net membership site that I can query their friends list?This is to make it easier for the user to connect to friends and to send a link to them (e.g. almost like a bookmark). Needs to be secure and not open to abuse e.g. spamming...!
View 2 Replies
Feb 18, 2011
I'm developing a facebook connect Application with Facebook C# SDK, I want to send application invites to my friend is it possible without using facebook social plugins. What i mean is it possible only with codebehind?
View 1 Replies
Jan 10, 2011
I have a iFrame FB app (hosted on say mydomain.com) which shows the friend invite dialogue using the following:
<body>
<fb:serverFbml>
<script type="text/fbml">[code].....
The callback/action page that is called after friends have been successfully invited is definately being called okay, but my problem lays in retrieving the Facebook IDs of those invited. FB documentation says they should be form-posted into 'ids', so my code behind has this (C# ASP.net):
if( Request["ids"] != null )
((Site)Master).FbInviteSent(Request.QueryString.GetValues("ids"));
I have also set authorisation permissions when people add the app, so I don't believe the issue has anything to do with that.
View 3 Replies
Jan 30, 2013
How can I get email adress of facebook friends in c# ...
View 1 Replies
Oct 10, 2013
Using FaceBookConnect i have retrieved friends namem id, pic but i not able to retieve friends emails, contact no. How to retrieve friends emails from Facebook..? in ASP.NET
protected void Page_Load(object sender, EventArgs e) {
FaceBookConnect.API_Key = "API_Key";
FaceBookConnect.API_Secret = "API_Secret";
if (!IsPostBack) {
[Code] ....
View 1 Replies
Jul 26, 2012
As U Explianed in [URL] Page i have developed code in my application.But the problem is i am unable to get the Emial ids.More over there is no property exist named email in FaceBookUser class .
View 1 Replies
Oct 5, 2012
i have an app to post on friends wall but i want it to prompt to choose from friends like adding friends by checkbox so that the messsage can be sent to all i selected simultaneously.
View 1 Replies
Jan 7, 2013
Importing contacts from facebook to excel using asp.net
View 1 Replies
Sep 17, 2010
I am using facebook graph Api for my application where i want the data of this page.
http://www.facebook.com/pages/
In this page there is option TV SHOW I want collect all information of that page.
But i didn't any graph api method for this page.
View 1 Replies
May 7, 2015
I want to call facebook graph web api to get friend list of logged in user with some information of them like email id and mobile number can I do this in asp.net application.
View 1 Replies
Feb 28, 2011
I have this requirement of fetching facebook user information like friends count and other basic information and integrate to our website.
I currently use facebook graph to ask user to authorise, fetch information and store in my database.
When their say, friend count changes how do I update my database without asking user to trigger it manually.
Is there a special permission where i can fetch user data when he/she isnt logged in.
I have seen this somewhere but not sure of the permission.
Or does facebook have any feature of publishing information on subscription ?
View 2 Replies
Jul 20, 2010
i want to use localhost for developing website facebook application using the graph api.
i working in asp.net c#
in the previous api of facebook i was abe to write the
http://localhost:4300/ in the connect url at the application settings.
now it dosent work.it keeps telling me
An error occurred with application name. Please try again later.
** if i upload the website, and use the website coonect url, it is working.
View 3 Replies
Mar 17, 2011
I am tying to get the work information from a facebook user using Graph API
When I use the Graph API and get the User object, it contains work information, which is essentially a list of the work history. The list elements contain nodes of employer, location, description, etc...
The FQL return it as a JsonObject, how do i get the the value employer out of it. I am only interested in the last employer. I tried something below but could not get it working.
[Code]....
There is more information that says it return the "work_history" as an array
http://developers.facebook.com/docs/reference/fql/user/
View 7 Replies
Mar 27, 2011
When it comes to integrating your site with facebook, is it recommended to save all the user's info from Facebook to your DB, or is it recommended to query in real time all the info you need based on the user's id?
For example the avatar sizes are different on my site than on my facebook, so I may have no choice but to download the fb avatar, but for other things like name, gender, hometown, I was wondering if I need to save that data. Also, if I decide to change extended permissions at a later time, is that going to be an easy task?
View 1 Replies
Mar 27, 2011
i wrote an application for facebook but i couldn't upload image to album that i created,
code is in below
Facebook.FacebookAPI api = new Facebook.FacebookAPI(GetAccessToken());
Dictionary<string, string> album = new Dictionary<string, string>();
album.Add("name", "Test Album");
album.Add("message", "Message here!");
JSONObject result = api.Post("me/albums", album);
string AlbumId = result.Dictionary["id"].String;
Dictionary<string, string> photo = new Dictionary<string, string>();
photo.Add("message", "test Message");
photo.Add("source", "tgw.jpg");
JSONObject photoResult = api.Post("/" + AlbumId + "/photos", photo);
View 1 Replies
May 17, 2013
I am following your code for integrating facebook authentication.
It really works fine, but as per your post at [URL] ....
We cant use dll to logout from facebook. Is there any way around or do we need to use use facebook sdk for just logging out?
View 1 Replies
Dec 31, 2013
i want a code to search a friends and send a request (add to my friend)
View 1 Replies
Nov 10, 2010
We're thinking of making use of the Facebook Live Stream social plugin for our site (example here), but I wanted to know if it was possible to access this data via the Graph API?
View 1 Replies
Jul 14, 2010
I try to get parse JSON response for the following link:
https://graph.facebook.com/feed/?ids=135395949809348,149531474996&access_token=
The response is like that:
{
"135395949809348": {
"data": [
{
....Some data
}]
}
,
"325475509465": {
"data": [
{
....Some data......
}]
}
}
I use System.Web.Script.Serialization.JavaScriptSerializer.Deserialize(string json) method.
But the objects key names always different , so I can't define the class that can be used for parsing this response.Is anyone has any experience in parsing multiple id's response from Facebook?
View 2 Replies