New Client Libraries for Python and C# developers

When we launched the API, about 2 month ago, we provided 2 client libraries for easier development above the REST API.

We now added links for 2 more libraries in our download page, contributed by developers, who have done great work wrapping the API in Python and C#.

A Python library was created by Tomaž Muraus.
A C# library was created by Daren Willman.



If you guys have your own libraries in other languages, you're welcome to share them with the community.

Posted on July 12, 2010 at 12:50 pm by admin · Permalink
In: News

6 Responses

Subscribe to comments via RSS

  1. Written by Franklin on October 6, 2010 at 12:28 pm Reply · [Permalink]

    It would be great if someone could post the steps required to use the C# API to integrate within a asp.net application.

    I would like to test by first integrating with my application running localy on my machine. Is it possible?

  2. Written by Getachew on October 29, 2010 at 6:30 pm Reply · [Permalink]

    Keep it up

  3. Written by Vijay Mahantesh SM on January 14, 2011 at 1:49 pm Reply · [Permalink]

    Hey…
    Can anyone please provide sample codes how to use the API ? :)

  4. Written by Levon on April 2, 2011 at 9:25 pm Reply · [Permalink]

    I’m extending the .Net API will share soon.
    for now here’s a snippet how to use couple of methods.

    1. copy the API file into your project
    2. call respective methods form your code
    ex. to call Detect Method

    protected void buttonDetect_Click(object sender, EventArgs e)
    {
    List imgs = new List() { “http://face.com/images/logo_copyrights.gif” };
    FaceRestAPI faceApi = new FaceRestAPI(“APIKey”, “APISecretKey”, string.Empty, true, string.Empty, string.Empty, string.Empty);
    var result = faceApi.faces_detect(imgs, string.Empty, null, null);
    TextBoxResult.Text = result.RawData;
    }

    substitute “APIKey” & “APISecretKey” with the proper keys. In order to do that, you need to log in to face.com register an application and copy the keys from there.

    P.S.
    I’m working on extending the API and making it easy to use.
    will share it once its ready.

    Levon

  5. Written by 汪文利 on October 25, 2011 at 11:49 am Reply · [Permalink]

    have anyone ?
    i am newcome.
    i do not know what to do.
    HELP ME. Thanks

  6. Written by Raymond Camden on November 7, 2011 at 8:18 pm Reply · [Permalink]

Subscribe to comments via RSS

Leave a Reply