api

Implementation recommendations (tutorial) for implementing a linq interface

Developing a .net library based on an industry standard. The standard includes data structures and an api for interacting with a server. I am considering adding a Linq friendly implementation, and to try to either implment or emulate Linq to Entities. The obvious difference is the API is used for CRUD operations, instead of a database ...

convert csv file to json object datatable

Does anyone know how to get a csv url file and convert it to a json object so that I can use google charting tools in js? ...

Is there a cocoa framework for image scanning?

What options do I have for an image scanning framework on Mac OS X? I'm not looking for an OCR library. Just something that will do the actual scanning and importing to PDF or comparable format. ...

Why do I get a connection timeout for facebook api-video?

Hi This is the API call Im attempting: http://developers.facebook.com/docs/reference/rest/video.upload (Video upload is not available in the new Graph API.) I have tried many variations on the parameters. The code below is my best guess. If I modify the params to be obviously incorrect, change to http (not https) or try to use api.fa...

How should I architect my DB & API server for a turn based multiplayer iPhone board game? (thinking about nodejs, mongo, couch, etc)

I'm working on a turn based board game for iPhone and eventually Android. I'm using Appcelerator Titanium to develop it. My multiplayer design is similar to Words With Friends. Users take turns when ready, and then the opponent's game board is updated accordingly. One of my needs is to have a messaging API which enables the 2 players' d...

Showing a popup before posting in facebook wall

i want to make my app publish on my wall, i can post without any problems, but i dont know how to popup here is my code $attachment = array( 'message' => 'Did a Test Post :', 'name' => "This is the title of my post", 'link' => "http://www.lydiadana.com.br", 'description' => htmle...

What's the best design to follow for this API in this case?

I'm building an API that post a given message to different platforms (Twitter, FaceBook...). The problem is that for each platform I may change the wrapper that allow me to post the message. For example, in C# I can post a message on twitter using the yedda API or the CsharpTwitt API, for FaceBook I'll use others APIs... Hence, I have ...

Google Docs API question.

Hello! I'm interested in possibility, to export PDF files to Google Docs, and than I want them to be shown on my web page, with user friendly interface. Plus, I want to make, that registered users of my web page could download them for money using credit cards, SMS, or web payment systems. Also, I need to have a statistics of all that th...

Getting an API's response through curl's curl_exec() instead of the usual callback file

API integration description The API needs a form to be posted to the API URL with some input fields and a customer token. The API processes and then posts response to a callback.php file on my server (it is fixed as per the documentation and we cannot mention that we want the response to be posted to some other file). I can access the po...

possible to check when a user joined facebook using the graph api?

i would like to know whether it is possible to find out when a user joined facebook. or how long they have been a member. Is this possible using the facebook graph API? ...

Error during sms deletion in Android API.

Hi, I have problem with deletion sms with messageId=0. I can't delete such a message. There is no problem with deletion other messages but first message taken from inbox has always message Id=0 and I can't delete it. I use code below for deletion. Uri SMS_CONTENT_URI = Uri.parse("content://sms"); Uri deleteUri = Uri.withAppendedPath(SM...

Send Mask Mail through api or webservice from .net

i have one application for sending more then 1 million mail from that application. so sending mail may be through third party api or else how to send bulk mail through c#.net with asp.net? ...

SkyDrive alternative with API access?

Is there any 3th party service (no MS) similar to skydrive (CRUD files in the cloud) free to use and with an official API (REST could be perfect but even SOAP can be ok)? I don't need 100Gb, just few megs are ok, but accessible via API (I'm planning to develop a smarphone application...) thanks! ...

Callback from API not happening after posting parameters to API URL from server side

API integration description The API needs a form to be posted to the API URL with some input fields and a customer token. The API processes and then posts response to a callback.php file on my server. I can access the posted vals using $_POST in that file. That's all about the existing method and it works fine. Requirement To hide the c...

WorkItemChangedEvent and AddedRelations field

Hello! I am trying to capture links that were added to a work item in TFS by catching WorkItemChangedEvent via TFS services. Here is the relevant XML part of the message that comes through: <AddedRelations><AddedRelation><WorkItemId>8846</WorkItemId></AddedRelation></AddedRelations> This is declared as a field in WorkItemChangedEvent...

Mapping Windows drive path to a RESTful API for cental file storage

Is this possible? Is there a programme that will allow this to happen? I have a program that needs to access a lot of data from a central storage, but the likes of Amazon S3 only allows access via RESTful API which is no good for this program. Only UNC or drive letters are acceptable... Help! Bernard ...

MySpace App Invites

I am currently working on a MySpace app (onsite) and cannot find any examples of inviting friends to the app. I'm currently using the MySpaceID SDK for C# (using the OnsiteContext instead of Offsite), but for the app invites, I can use javascript or whatever works. The MySpace developer documentation is crap. Anyone able to help? ...

PHP External API

I'm looking to build an API that users can call, so that they can integrate our app with their own processes. Most of the database and php models have already been created. I'm looking for a tutorial with examples on the best way to accomplish this. Must include all the security considerations as well. I'd like to use an established fr...

Is there any nice CSV export/import library providing features like field omission?

Like when I export/serialize my bean to an xml file (using XStream) I get a nice API and I can easily restrict what shouldn't go into export calling XStream#omitField(SerializableBean.class, "restrictedField"), is there any such API for doing CSV exports in java which could provide this functionality? ...

Validating API Keys in CouchDB

Hi there, I became interested in CouchDB recently and wanted to try and form a small application around it. The way how I invition my system currently is that requests come providing two things, a id, a API Key and a format. The ID is the _id of a document in the database, the API Key is a _id of another document that has a property ...