api

What audio API would I use, on the iPhone, to record audio and then in return modify it while playing?

I want to be able to record audio. then modify it like add effects, slow down and it speed up while playing it. ...

Flash ShowMessage(Pos) or any other predefined window in Dialogs unit in Delphi for Post-WInXP OS

This is approach I found for Tray ... : http://www.programmersheaven.com/mb/delphikylix/257563/257563/how-can-i-make-a-system-tray-flash/ Does the same technique works for Dialogs ( as they are forms with addition params, in fact )? Or I can do it with way faster methods like getting handle / address / interface and overload or overdri...

Linux API to get info about filesystem

I am looking for a linux api that returns me information about root filesystem. I can use command stat -f / to get information about root filesystem. Is there any API that returns exactly same information as returned by "stat -f" command ? ...

Trying to use jQuery to display JSON text data

I know very little (none) JavaScript, or much about using API's. However I would like to display some hotel reviews on my webiste made available over the qype.com API. However I'm struggling with being able to manage this. This is the code I have so far: $(document).ready( function() { $.getJSON( "http://api.yelp.com/business_revie...

Creating an API in Java for the first time

I am a novice in Java. I have been given the task to design a list of APIs to be used by a GUI to communicate with an application. Considering that the application has just been designed and I have its initial class diagram, should I: 1- Just list the fields and methods from this application class diagram that will be needed by the GUI...

Facebook Connect: unregister users with PHP library

I use the PHP library for Facebook Connect. The library is used as follows: $facebook->api_client->METHOD Here's the documentation for how to unregister users from one's Connect page: Connect.unregisterUsers So, actually, I have everything I need, haven't I? But I can't manage to unregister users, though. How must I do this? $faceb...

Win32 streaming API and the DMZ

We are investigating the use of the Win32 streaming API to pull out files stored with the FILESTREAM capabilities in SQL 08. If a web application, sitting on the public side of the firewall uses the streaming API to pull back a file, what ports must be opened to make this happen? Also, are there any NTFS file/directory permission issue...

How can I display multiple (but seperate) JSON requests on the same page

I have a web page where I want to display hotel reviews from the yelp.com API for a number of hotels. I have managed to do this for one hotel, and it works perfectly displaying the data under that specific hotel's details on the page. However, how can I now multiply this process so that I have separate reviews for each hotel? My web p...

Creating a mock API for third party library in statically typed language?

I have an application in VB/C# .NET which needs to interact with a third party API, but I would like to interface it out so I can use a mock API for testing purposes. Here are example API calls I would use in code: RelayClient.AuthenticateUser(username, password, request, sessionID) RelayClient.GetUserInfo(sessionID) A few problems I ...

google search api not giving results

I am using Google Search API in a website to produce results from the website.(the site) the problem is, it is not producing results at all. If I change the site restriction to some other site(e.g. wikipedia.org or any other) it produces results. It is not that the site is not listed - when I search for site:www.hinroengineering.com on ...

Historical Forecast or Observed Weather Data Source

I'm looking for an API that provides recent, 3-hourly temperatures... either observed or forecasted. To be clear, I'm looking for data from the past... like 'yesterday'. Free or paid is fine. International or US only is fine. Lookup by long/lat, zip, city doesn't matter either. Any suggestions? ...

How to pass a variable to searchComplete funciton using Google AJAX Search API imageSearch.setSearchCompleteCallback

I am trying to pas a variable using the Google search API. To speed things up for you I believe the problem is with the third last line: imageSearch.setSearchCompleteCallback(this, searchComplete, [imageSearch]); I have a number of div elements, each with their own specific id (ie. "showImagesResults100" and "showImagesResults102", e...

How to open-source an application that uses API keys

For a pet project, I develop a desktop application which requires API keys from several different webservices. I've been going through and preparing this application to become open-sourced and run across the problem of what to do with those keys. The problem is this: My understanding is that these API keys should not be visible to any...

How to add url shortener API to wordpress posts links?

I was wondering if it was possible to add a api to wordpress to make all the links in a post a shortened url (in this case for linkbee - http://linkbee.com/api%5Fdoc.php) if so how would i do this? ...

iPhone: How to get data from a web application?

Sorry if this is a stupid question, but I am new to this. I am getting started with iPhone application development and would like to create an application that involves pulling data from from a web application. Let's say the url is http://myapp.com/api/people/fetchall and it returns XML data. How do I get this data into my iPhone App...

Best Practices: What I should know before creating a web app API for an iPhone app?

I am getting started with iPhone application development and would like to create an application that involves pulling data from from a web application. I will be developing the API using PHP and the Zend Framework. I have never created a public API before, nor an iPhone app that works with public data. Here are some specific questions ...

How to create a public API using the Zend Framework?

I have an idea for a web application that would be great if it also had a public API for people to use and interact with. I want people to be able to create their own mobile and desktop applications that interact with the API. Specifically, I want to create an iPhone application that will interact with the API. I will be building the ap...

Read Installed Device Driver Details (version, install date, path etc), on Win system

Hi Everyone, Can anyone help please in this regard ? What API's can be used from win32 to get installed device drivers details like version, installation date, path where installed ? Regards, Kedar ...

How can I build an API in PHP

Hello I am looking to build a basic API and application/apps system on my social network something like Facebook or other sites have, my site is in php/mysql. Here are some questions. 1) Basically what I want to do is give a user a API key and secret. After I have these how can I use them in my php app to authenticate a user request ...

Can a PHP API script run PHP code returned from REST server?

I am working on building an REST API in PHP, I need to know if it's possible to to POST an array of methods/functions and params to my api script and have my code run the listed functions and print to the screen an array that the functions produced, example if a user sent a request to get a list of 5 photo url's it would post a PHP array...