api

Which service to embed a videochat easily on a website?

Hello, I'm working on a new website and I'd like to add a videochat feature. So I'm looking for services giving an API to do that easily. Here is the list of features I need: 1-to-1 chat (a user can chat with an other one) video voice chat be able to know if somebody is currently chatting user-friendly working on all standard configu...

bungie.net stats api

Hey :) Has anyone tried accessing bungie.net reach stats api (statistics from Halo Matchmaking)? As described here http://www.bungie.net/fanclub/statsapi/Group/Resources/Article.aspx?cid=545064 I can't seem to get any data returned, for example if i use this (with correct API key and gamertag values of course) ignore the first 2 asteri...

Facebook API get events CREATED BY friends

Hi! I am developing facebook app which needs to retrieve events created by some of my friends. Standard SQL query would look like this: NSString *fql1 = @"SELECT " @"eid, name, tagline, id, pic_small,host, description, start_time, creator " @"FROM " @"event " @"WHERE " @"creator = 1111111111 OR creator = 2222222222 OR creator = 33...

java service API analytics & doc libraries?

We have a Java/Spring-based services layer architecture and are exposing some services via RESTful json/xml API (using Spring-mvc). We'd like to add in-process analytics & I'd appreciate a recommendation for an off-the-shelf solution for either (or a confirmation that there aren't any good solutions and we should roll our own) API Analy...

What is the API that posts to all social networks

I was told of a service, that for a fee gives you access to an API that posts to all social networks (facebook, twitter, linkedin) etc. I was hoping someone knows who it is because I can not remember. ...

php rest api call

This is the only official documentation available for the Halo: Reach stats API. If you have questions, read this group's forum and/or wiki to get assistance. This is a collection of methods to access the Halo: Reach game, player, and file information. They are available as a .NET 4.0 WCF service with three endpoints. To enforce consist...

Facebook API domain errors documentation

Hi! Anybody knows where I can find documentations of frustrating domain errors from facebook API? Like: error domain 1000, 603, 3, 601, etc..? I can not find exact explanations what they means. I would help to debug API requests. Thank You. ...

Continuous prediction in Google Prediction API?

Is there any announcement about when Google will launch continuous prediction. Currently is there any trick to predict stock prices using Google's prediction API? ...

Facebook fql case insensitive version of strpos

Hi! What is the case insensitive version of strpos(field', 'Phrase') in facebook query language? ...

Java licensing API

Hi, I just came across TrueLicense Project API for licensing Java projects. I want to know are there any other similar APIs available? Please suggest me some. Also I am not familiar with the process of generating the keystore which is needed for this. Can anyone guide me about the process of generating .store file which is used in th...

How to get applications data from Blackberry appworld with PHP?

Is there an API or some SDK allowing access to appworld.blackberry.com to get application information using PHP or maybe some other programming language? ...

which language to use for creating a RESTFul web service?

I will have to create API calls for my system to be exposed to the outside world. Which language would be the best fit? I will have to create proper authentication (OAuth) and I am looking to build in such a way that it is very reusable and extensible. If I had to choose between Python and Ruby, which one should I and why? (considerin...

Building my first API for a CodeIgniter app. Any tips?

Hi, I'm planning on building a private API for a CodeIgniter web application I have. I've found a tutorial for that which shows me how to do it using pre-built libraries. I'm very new to this so my questions is: shall I use and rely on these libraries? or shall I learn how to build it from scratch in order to have complete control over...

Facebook Graph update rsvp status

Hi, I'm trying to get the update rsvp status working, but nothing happens. The permissions are ok btw $access_token = $facebook_session['access_token']; $fields_arr = array('access_token' => $access_token); $fields = json_encode($fields_arr); $request = "https://graph.facebook.com/[EVENT ID...

Emulate mouse select messages between windows

Hi, I've got two windows in the same process. Window 1 contains some text. Window 2 contains a bitmap of the contents of window 1. Whenever I click (WM_LBUTTONDOWN ) or move (WM_MOUSEMOVE) the cursor in window 2, i pass the message into window 1 by posting the message to window 1's message queue. I now want to emulate more complex...

Is there any library/tool that is able to analyze the dependencies of the source from a java project?

I am trying to figure out the way to analyze dependency condition of java projects. Is there any API/tool that can help find out the dependency in the source? I know that dependency can be easily analyzed in a project's binary format, by using tools like "DependencyFinder". However, I don't know if there is any tool to do it in its sour...

SMS integration to my web application

Hello, I am from India, I want integrate Free SMS sending API with my web application.Is there are any such API available freely in India, plz let me known ...

What should be the domain name in google api AppsService..

using Google.GData.Apps; AppsService service = new AppsService(domain, userName, password); I am using google APi and i came across a Class AppsService which have parameters domain,username and password..Since i am working locally my domain name is "localhost" and password and username is empty ...Am i right with this or am i making a ...

How to get french results from Apple Search API?

Hello, I know how to get information from Apple iTunes & AppStore Search API but I can't obtain french results (for description in example). Does someone know how to do it? ...

How to encapsulate a C API into RAII C++ classes?

Given a C API to a library controlling sessions that owns items, what is the best design to encapsulate the C API into RAII C++ classes? The C API looks like: HANDLE OpenSession(STRING sessionID); void CloseSession(HANDLE hSession); HANDLE OpenItem(HANDLE hSession, STRING itemID); void CloseItem(HANDLE hItem); Plus other functions th...