Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to C# and also new to using facebook Api . My work is simple I just want to extract my own friend list and statuses and also want to update my statuses through C# . I am confusing with using libraries. Now am using Library Facebook . Can anyone please suggest me from where I get start and which library should I use . Graph Api or using facebook ?

This is the code which I do for crawling my own friend list but it's not working

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ComputerBeacon.Facebook;
using Facebook;
using Newtonsoft.Json.Linq;
namespace Social_network_work
{
    class Program
    {
        static void Main(string[] args)
        {
            var client = new FacebookClient();
            var me = client.Get("totten");
            Console.WriteLine(me);
            Console.ReadLine();
            string myAccessToken = "something";         
            FacebookClient klient = new FacebookClient(myAccessToken);         

           var friendListData = klient.Get("/me/friends");
          JObject friendListJson = JObject.Parse(friendListData); //error 

          ArrayList<FbUser> fbUsers = New ArrayList<FbUser>();  //error
         foreach (var friend in friendListJson["data"].Children())             
         {   
           FbUser fbUser = new FbUser(); //error
           fbUser.Id = friend["id"].ToString().Replace("\"", "");                 
           fbUser.Name = friend["name"].ToString().Replace("\"", "");                 
           fbUsers.add(fbUser);
         }
        }
    }
}
share|improve this question
2  
I don't want to indulge into asp.net or any other language – user1626276 Sep 29 '12 at 8:46

closed as not a real question by CBroe, pb2q, Jack, Lucifer, Jeremy J Starcher Oct 1 '12 at 3:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

When I was playing around with Facebook's API systems I used the Graph API.

I suppose you're familiar with tokens, so you need to request the required permissions from your friend, for instance, by sending him a link to confirm access.

Here's a guide on how to request extended permissions: https://developers.facebook.com/roadmap/offline-access-removal/

To post to your wall: https://developers.facebook.com/docs/reference/api/post/

I assume you're also familiar with C#. The data you're receiving using Facebook Graph API is JSON code. To parse JSON you can use the json.net library which can be downloaded here: http://json.codeplex.com/

json.net also supports LINQ, which is another nice feature. Good luck.

share|improve this answer
1  
I need examples – user1626276 Sep 30 '12 at 18:00
1  
Post your current code, tell me what's difficult and I'll do my best to help you out. – Nikkster Oct 2 '12 at 7:30
I added the code now I hope its helpful for you – user1626276 Oct 2 '12 at 19:30