C# - Get Friends Email Id From Facebook?
Apr 29, 2010How to get friends Email id from facebook using asp.net code
View 2 RepliesHow to get friends Email id from facebook using asp.net code
View 2 RepliesHow can I get email adress of facebook friends in c# ...
View 1 RepliesAs 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 RepliesHow 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 .
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?
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 RepliesI'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 RepliesI 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.
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 .
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] ....
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 RepliesImporting contacts from facebook to excel using asp.net
View 1 Replieshow 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.
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] ....
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 RepliesAnyone know about this? I am trying to embed that plugin and am lost. I have already tried this and this is not working at all. http://developers.facebook.com/docs/reference/fbml/request-form.
View 1 RepliesI want to include in my asp .net website ( c# ) a function to import contacts and friends from my social networks and email providers. I would prefer if I don't have to choose the option of redirecting to each social network. I would rather have an API which can provide me the functionality of giving the credentials and return my contacts from each social network. DO you have something to propose to me?
View 1 RepliesI'm trying to built a "invite your friends " form (like in facebook for example).And I have 2 problem with is One :I'm using a regex to validate the e-mail address , And the validation message appears only next to same of the fields (but it does appears for all of the fiels (as it suppose to in the validation summery )
( I would like to correct that)
This is the code I'm using :
[Code]....
Two:
I cant pass all the fiels In this code I'm getting this error :
No overload for method 'Send' takes '6' arguments
here is the gode :
[Code]....
I have created an event in facebook through facebook API.Now i want to invite my friends to that event.
View 1 Repliesi want get email address from facebook i used facebook api but i can not get email
View 8 RepliesASP.Net C# and FaceBook Connect.
I'm using Facebook connect on my site. If a new user connects through FB i create an account for them and all is fine. What i would also like to do is check to see if they already have a registered account.
So if someone connects that has not logged in but has an account i would like to be able to locate the account in my application a link it. I hoping this could be done via the email address?
I use aspsnippets.facebookapi.dll for login into facebook in my web site. But when login into facebook, returned username and email is empty. In my facebook account, email is public. Where is my Fault.
FaceBookConnect.API_Key = "...";
FaceBookConnect.API_Secret = "...";
if (!IsPostBack) {
if (Request.QueryString["error"] == "access_denied") {
ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('User has denied access.')", true);
return;
[Code] ....
facebook login is not returning username and email as stated in example
Have implemented the same code given in the example and change the appid and secret code but is not reflecting the email and username but the name is reflecting and the picture is also reflecting.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
[Code] ....
I see that only name,group,email address we can access at facebook send button. How can i send to my facebook page wall (where i am admin) by clicking facebook send button. It's by default don't show it.
View 1 Replies