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've downloaded the facebookSampleASPNETApp. I don't know anymore where i found it. But i think it's really great. But it's a Web Application, and i'm making an asp website.

I want to use the same code as used in this sample. I've tried to import some classes (like FacebookAPI.cs and JSONObject.cs) out of this sample, but it doesn't work in my website. Do i need a refference maybe?

The facebookSampleASPNETApp contains two projects. One is the FacebookAPI, the other one is the facebookSampleASPNETapp project. In a website, i can't import another project. So how can i use the FacebookAPI?

Here is the FacebookAPI.cs code:

   /*
 * Copyright 2010 Facebook, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may
 * not use this file except in compliance with the License. You may obtain
 * a copy of the License at
 * 
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
using System.Web;
using System.Web.Script.Serialization;

namespace Facebook
{
enum HttpVerb
{
    GET,
    POST,
    DELETE
}

/// <summary>
/// Wrapper around the Facebook Graph API. 
/// </summary>
public class FacebookAPI
{  
    /// <summary>
    /// The access token used to authenticate API calls.
    /// </summary>
    public string AccessToken { get; set; }

    /// <summary>
    /// Create a new instance of the API, with public access only.
    /// </summary>
    public FacebookAPI()
        : this(null) { }

    /// <summary>
    /// Create a new instance of the API, using the given token to
    /// authenticate.
    /// </summary>
    /// <param name="token">The access token used for
    /// authentication</param>
    public FacebookAPI(string token)
    {
        AccessToken = token;
    }

    /// <summary>
    /// Makes a Facebook Graph API GET request.
    /// </summary>
    /// <param name="relativePath">The path for the call,
    /// e.g. /username</param>
    public JSONObject Get(string relativePath)
    {
        return Call(relativePath, HttpVerb.GET, null);
    }

    /// <summary>
    /// Makes a Facebook Graph API GET request.
    /// </summary>
    /// <param name="relativePath">The path for the call,
    /// e.g. /username</param>
    /// <param name="args">A dictionary of key/value pairs that
    /// will get passed as query arguments.</param>
    public JSONObject Get(string relativePath, 
                          Dictionary<string, string> args)
    {
        return Call(relativePath, HttpVerb.GET, args);
    }

    /// <summary>
    /// Makes a Facebook Graph API DELETE request.
    /// </summary>
    /// <param name="relativePath">The path for the call,
    /// e.g. /username</param>
    public JSONObject Delete(string relativePath)
    {
        return Call(relativePath, HttpVerb.DELETE, null);
    }

    /// <summary>
    /// Makes a Facebook Graph API POST request.
    /// </summary>
    /// <param name="relativePath">The path for the call,
    /// e.g. /username</param>
    /// <param name="args">A dictionary of key/value pairs that
    /// will get passed as query arguments. These determine
    /// what will get set in the graph API.</param>
    public JSONObject Post(string relativePath,
                           Dictionary<string, string> args)
    {
        return Call(relativePath, HttpVerb.POST, args);
    }

    /// <summary>
    /// Makes a Facebook Graph API Call.
    /// </summary>
    /// <param name="relativePath">The path for the call, 
    /// e.g. /username</param>
    /// <param name="httpVerb">The HTTP verb to use, e.g.
    /// GET, POST, DELETE</param>
    /// <param name="args">A dictionary of key/value pairs that
    /// will get passed as query arguments.</param>
    private JSONObject Call(string relativePath, 
                            HttpVerb httpVerb,
                            Dictionary<string, string> args)
    {
        Uri baseURL = new Uri("https://graph.facebook.com");
        //relativePath = "/me";
        Uri url = new Uri(baseURL, relativePath);
        if (args == null)
        {
            args = new Dictionary<string, string>();
        }
        if (!string.IsNullOrEmpty(AccessToken))
        {
            args["access_token"] = AccessToken;
        }
        JSONObject obj = JSONObject.CreateFromString(MakeRequest(url,
                                                                 httpVerb,
                                                                 args));
        if (obj.IsDictionary && obj.Dictionary.ContainsKey("error"))
        {
            throw new FacebookAPIException(obj.Dictionary["error"]
                                              .Dictionary["type"]
                                              .String,
                                           obj.Dictionary["error"]
                                              .Dictionary["message"]
                                              .String);
        }
        return obj;
    }

    /// <summary>
    /// Make an HTTP request, with the given query args
    /// </summary>
    /// <param name="url">The URL of the request</param>
    /// <param name="verb">The HTTP verb to use</param>
    /// <param name="args">Dictionary of key/value pairs that represents
    /// the key/value pairs for the request</param>
    private string MakeRequest(Uri url, HttpVerb httpVerb,
                               Dictionary<string, string> args)
    { 
        if (args != null && args.Keys.Count > 0 && httpVerb == HttpVerb.GET)
        {
            url = new Uri(url.ToString() + EncodeDictionary(args, true));
        }

        HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;

        request.Method = httpVerb.ToString();

        if (httpVerb == HttpVerb.POST)
        {
            string postData = EncodeDictionary(args, false);

            ASCIIEncoding encoding = new ASCIIEncoding();
            byte[] postDataBytes = encoding.GetBytes(postData);

            request.ContentType = "application/x-www-form-urlencoded";
            request.ContentLength = postDataBytes.Length;

            Stream requestStream = request.GetRequestStream();
            requestStream.Write(postDataBytes, 0, postDataBytes.Length);
            requestStream.Close();
        }

        try
        {
            using (HttpWebResponse response 
                    = request.GetResponse() as HttpWebResponse)
            {
                StreamReader reader 
                    = new StreamReader(response.GetResponseStream());

                return reader.ReadToEnd();
            }
        }
        catch (WebException e)
        {
            throw new FacebookAPIException("Server Error", e.Message);
        }
    }

    /// <summary>
    /// Encode a dictionary of key/value pairs as an HTTP query string.
    /// </summary>
    /// <param name="dict">The dictionary to encode</param>
    /// <param name="questionMark">Whether or not to start it
    /// with a question mark (for GET requests)</param>
    private string EncodeDictionary(Dictionary<string, string> dict,
                                    bool questionMark)
    {
        StringBuilder sb = new StringBuilder();
        if (questionMark)
        {
            sb.Append("?");
        }
        foreach (KeyValuePair<string, string> kvp in dict)
        {
            sb.Append(HttpUtility.UrlEncode(kvp.Key));
            sb.Append("=");
            //NOTE: This line causes problems with access_token. The url encoding messes up the access_token, so for now I'm just adding it directly
            //if the key == "access_token"
            //sb.Append(HttpUtility.UrlEncode(kvp.Value));
            if (kvp.Key.ToLower() == "access_token")
            {
                sb.Append(kvp.Value);
            }
            else
            {
                sb.Append(HttpUtility.UrlEncode(kvp.Value));
            }

            sb.Append("&");
        }
        sb.Remove(sb.Length - 1, 1); // Remove trailing &
        return sb.ToString();
    }
}
}

Any help is very much appreciated!

share|improve this question
2  
"it doesn't work"? How do you expect anyone to help you with so little information? – Foole Apr 12 '11 at 8:08

1 Answer

up vote 2 down vote accepted

Check out the official Facebook developer page on the subject. That should get you started just fine. On that page you will find detailed how-tos such as how to create an app on Facebook

EDIT: Just stumbled on a blog post about .NET and FB-authentication. Maybe that is what you are looking for.

share|improve this answer
Thanks for your response. I have a facebook app registered. I know how to use the facebook graph api. At this time, i'm writing my post methods myself. But they don't work always, and i want a consistent way to post stuff to facebook. So that's why i want to use the the facebookAPI class (shown in my question). The methods are so great, and reuseable. I know it sounds like, i don't want to look it up myself, but i really did, and i can't find any documentation for an asp website that can use this file by facebook. I just need to know how i can import this api or classes in my website. Thanks! – ThdK Apr 12 '11 at 8:17
see my edit above. – froeschli Apr 12 '11 at 8:55
Omg, i feel so bad i saw your edit so late. The blog post you told about is so great! Thank you! – ThdK Apr 15 '11 at 13:15
@Thomas Dekiere - no worries ;) – froeschli Apr 15 '11 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.