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.



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?
Keep it up
Hey…
Can anyone please provide sample codes how to use the API ?
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
have anyone ?
i am newcome.
i do not know what to do.
HELP ME. Thanks
I’ve got a ColdFusion sample here.
http://www.coldfusionjedi.com/index.cfm/2011/11/7/Facecom-API-released