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);
}
}
}
}