api

How do I develop Salesforce API code for a custom object without Enterprise/Unlimited edition?

Background: I'm building a small application that will be run daily, pulling data from our own in-house databases and sending it over to our corporate Salesforce instance. I've built a custom object (called Marqui_Instance) in our Salesforce instance to house the data. The app will be creating a couple hundred of these, and attaching t...

How do I import historical data for a list of stocks from a specific date?

How do I import historical data for a list of stocks from a specific date? Mostly OTCBB stock. ...

Handling updates to data In your API

Assume I have a feed of data ordered by an "ordering" field. This data is fed to a consumer via API, and the consumer caches it locally. Now, let's say I correct a typo in an entry that has already been cached by the consumer, but need the consumer to pick it up. The content I'm feeding them is ordered by "ordering", and they won't be...

Google Map Question : How do I change content of div after location of the map is changed?

OK, so here's my scenario. I have a Google map on the left, and a corresponding contents on the right. When a user moves around the map or zoom in or zoom out, how can I dynamically change the contnets on the right given the "new" map now? I guess I need to know the "current" map information and then use that to retrieve the content c...

Alternatives to Google Book Search API?

I'm looking for alternatives to Google Book Search API. Ideally, something with more detailed information about books. ...

SOAP-ERROR: Encoding: object hasn’t ‘website_ids’ property

i am struggling to get the products listed/called from magneto via SOAP. I am using the following statement please help, tell me what i am doing wrong. I am sending down the username and apikey vi the “LogInSession.Session()” method, it just keeps the connection info. string sessionId = LogInSession.Session(); MagentoSOAPv2.MagentoSer...

How to check if a given longitude value is within any longitude range?

OK. This might be more of a math question but here goes. I have a longitude value, let's say X. And I want to know if X falls between any two longitude values. For example, if my X is 145 and the range is [21, -179]. The range is given by the Google Map API bounds and I can see on the google map that X does fall within that range. How...

Vkontakte UserAPI examples on C++

Say me please, where i can find examples on C++ with using UserAPI Vkontakte? ...

Max. Requests Twitter

I wanted to use the Twitter API to get the friends status list from many users. How many requests could I request in one moment? Little another question: What's faster: XML or JSON with a lot of data with PHP? ...

Better way to work with the UPS API?

Specifically, the UPS TradeAbility API -- I'm trying to implement Denied Party screening into my lead processing/quotation web application. However, the TradeAbility API is a bear. I've found some decent package classes for simple tracking, which I've implemented successfully. But I've seen nothing to support TradeAbility. UPS-PHP has i...

Drawing lines with clickable points using JavaScript

I'm interested in doing some drawing using JavaScript. I'll get straight to an example: The green horizontal line would be static, and all the vertical lines would be clickable. An example of a clicked line would be the red one. I've seen many API's, but they all allow more complexity than I need, making it more complicated than neces...

Do you know of a codepad/ideone/etc system that I can host internally for a commercial product for free?

I have a product in mind that would benefit from third-party developers being able to hook into the product with their own custom code. My product would call the developer's code. The trick of course is how? Embedding the code is a terrible idea as it is completely unsafe. A malicious developer could do all sorts of Bad Things. I could ...

draw texts using maya api

Hello there, Is it possible to draw a scalable openGL generated text in maya viewport using maya api, I tried to use the function 'drawText' in M3DView class but it wont draw a scalable text, the result seems to be like a maya annotation texts also it does not response to other openGL functions except glColor. I want to scale the g...

Suggestions for SCORM player + API or Library in Java and player in Flash

Hi Everyone, I'm hoping I can be guided in the right direction. I have been asked to help with a web eTraining software. Basically videos, and questions alternating. A request has come up to be able to handle and play SCORM courses. I have done some reading and gotten familiar with how it works, and discovered some wonderful and a...

How can we use ms office communicator client exposed APIs in python, is that possible ?

I want to use ms office communicator client apis, and i wan to use those in python is it possible to do ? ...

How to POST to Vitalist.com's API via Powershell?

I'd liketo use Powershell to post a new action to my Vitalist.com account. The Vitalist API documentation is here. I've tried HttpWebResponse in Powershell but I'm missing something. Any pointers are appreciated. Thanks. ...

Copy VSS structure to server with asp.net

i want to copy the structure (with the documents) from our vss server to an webserver. Therefore i want to create an application which is on this webserver. i want to use asp.net. i don't know what exactly i need therefore :> I have to build somekind of connection? then go throw the structure and copy it somehow :> ? important: i want...

Where do I find API key and API secret for Facebook?

Trying to connect to Facebook to make a statusupdate through my Android application. Got the whole thing running but I need API key + secret. Where can I create/get a hold of these? private static final String apiKey = "<YOUR API KEY>"; private static final String apiSecret = "<YOUR SECRET KEY>"; Tried the same thing with Twitter and...

Beginner extending C with Python (specifically Numpy)

I am working on a real time audio processing dynamically linked library where I have a 2 dimensional C array of floating point data which represents the audio buffer. One dimension is time (samples) and the other is channel. I would like to pass this to a python script as a numpy array for the DSP processing and then I would like to pass...

Array of structs or one struct with array for each of its properties

Hi, When designing an API, I may want to persist details (Eg of a process running) into my own custom struct. However, if I am going to do this for more than 1 process, meaning I need several structs, should I have an array of structs or one struct with an array for each of its properties (eg startTime, processName and other process pro...