api

Using Paypal Adaptive Payments API like Kickstarter uses Amazon Payments?

I'm wondering if it's possible to use Paypal Adaptive Payments in the way that Kickstarter.com are using Amazon Payments to collect/fundraise. For example: A user sets up a project. People pledge $5 to that project, and if it meets a goal, the system then automatically extracts the money from everyone, and puts it into user who created ...

How to remove the MenuBar of an application using windows API ?

I am using the below code to remove the Title Bar of an application, which is working perfectly for notepad. Now i want to remove the Menu Bar also. How to achieve it ? //Finds a window by class name [DllImport("USER32.DLL")] public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); //Se...

how to use You tube API with native iphone application?

Has anyone been able to connect to the You tube API within an Iphone application. I am interested in displaying a list of videos from an artists channel in a UITableView. If any one has done this or can point me in the right direction andy advice would be highly appreciated Thanks Tom ...

How to display 5 related blogs using google blogsearch API?

Hey there, I'm trying to figure out the code to implement into my blog pages to display 5 related "external" blogs using google blogsearch API. Has anyone been able to pull this off or know of a wordpress plugin to do it? Thanks. ...

How to use Facebook geo targeting programmatically ?

I can't seem to find how to do geo targeting (filtering a post based on the location of a user) on facebook using their API. Does anyone already managed to do it? This is how you can do it via their interface: ...

How do I close an infowindow with Google Maps 3 API?

I've seen the other posts, but they dont have the markers being looped through dynamically like mine. How do I create an event that will close the infowindow when another marker is clicked on using the following code? $(function(){ var latlng = new google.maps.LatLng(45.522015,-122.683811); var settings = { zoom: 10, ...

How to programatically upload document on Google Docs?

Hi, I building a small application uploading documents on Google Docs. Is there any API like Goolge API (Ver2) for same? Is it possible by using Goolge API (Ver2) ? Thanx ...

What's the best source for learning how to create RESTful APIs in Java?

Hi, I'm looking for a book or any other resource that will help me learn how to create RESTful APIs in Java. Looking on Amazon, I saw that there are several solutions for RESTful Java, but I'm looking for the one that is tailored to a novice. Looking forward to getting your advices/opinions, thanks! ...

link CloudMade to a project

Hi all. How can I link cloudmade api to my iPhone project? Any tutorials? ...

Authenticating users in iPhone app

I'm developing an HTTP api for our web application. Initially, the primary consumer of the API will be an iPhone app we're developing, but I'm designing this with future uses in mind (such as mobile apps for other platforms). I'm trying to decide on the best way to authenticate users so they can access their accounts from the iPhone. ...

Why a wrong tweet id is returned from twitter API?

Hello. I use twitter API to retrieve the user home timeline tweets. I use json response format. Recently the tweet id (in API it is just 'id') are retuned wrong. As an example normally it should return like this: "id": 14057503720, (example is from twitter console) however at my request it is returned like this: "id": 1172601832 It ...

how to set different views for admin and user

Hi I am little new to SharePoint. Here is my question How can we make different views for administrator VS logged in user. For instance I need to display the quicklaunch only to admin and not for user. And user should not see site actions tab. How can we set this. Please can anyone come up with solution or any blog that we can refer? ...

How to convert Iphone:37.615319,-122.388293 In Twitter to real life location? Is there an API available?

HI, Does anyone know that how to convert IPHONE:37.615319,-122.388293 ( I am guessing that is the longitude and latitude of the location) in Twitter to real life location? Is there an API available ? Thanks very much, Ling ...

telephone application programming on Linux

I'm a Linux user looking to write a program which will pick up the phone, dial a number, play a recording and record what the person on the other end of the line says and save it to an audio file. I will want to use the modem that came with my computer if possible. What should I use to write this program? ...

Is this application possible with the twitter api?

I have to make an application where a "sender" can send a message to a group of people and to a location. So when a member of the group reach this place (using location position with the cell phone), he receives all the messages for this location. I have thought to make the application using the twitter API, but I'm not really sure if th...

Problem with Google Calendar API invocation at server side

Hi guys, I have problems with the invocation of the Google Calendar API at the server side (servlet) with Google Web Toolkit. I downloaded the library for java and I added as external JAR in eclipse the following files: gdata-core, gdata-calendar, gdata- calendar-meta, gdata-client-meta, gdata-client. Then, I created a the method as it ...

How to read GPU (graphic card) temperature?

I am interested in a way how to read GPU temperature (graphics processing unit, main chip of graphic card), by using some video card driver API? Everyone knows that there two different chip manufacturers (popular ones, at least) - ATI and nVIDIA - so there are two different kinds of drivers to read temperature from. I'm interested in le...

How to trigger dialogDidCancel message from FBPermissionDialog?

FBPermissionDialog is official Facebook iPhone lib. But my code to triggering message - (void)dialogDidCancel:(FBDialog*)dialog is not working. What can I do for this? ...

Google Contacts Data API and PHP

I'm developing a PHP application to retrieve the list of contacts from a GMail account. I'm looking for a solution which would enable the user of my application to provide the login and password to their Gmail account in my application (as opposed to getting redirected to Google) and then automatically do the retrieval. The retrieval pro...

Code Highlight with javascript ?

Is there any API or a jQuery plugin that allow me to highlight a code on my website? For example <pre code="c#"> var x = new StringBuilder(); var complex = new Complex(); </pre> <script type="text/javascript"> $("pre[code]").codehighlight({ language: "c#" }); </script> Something like that? ...