vote up 4 vote down star
2

I have recently been working with a 3rd party API that I had to make so many custom quirky algorithms just to return the basic information that it has basically driven me nuts...

What is your worst experience with a 3rd Party API?

flag
11  
A 3rd-Party API killed my father. – Shog9 Jun 18 at 0:33
@Shog9 - it was probably the same API the bullied me in school. – Michael Kniskern Jun 18 at 0:36
3rd-party APIs are the only code that can make my cry. – JaredPar Jun 18 at 0:38
nutz... just as I was clicking add my answer the question is closed by the closing clique. – Metro Smurf Jun 18 at 1:38
1  
May not be a question, but it is good therapy. – altCognito Jun 18 at 12:10
show 2 more comments

17 Answers

vote up 3 vote down

Again, not 3rd party, but if you've used the Facebook APIs, they are a disaster. All of the examples are broken, the documentation is out of date because they keep breaking backwards compatiblility, the forums are poorly controlled, and even some of the facebook people in the IRC channel seem delightfully unattached from what is happening. I'm pretty surprised anyone can use it.

link|flag
Is there a sane place programmers go to get Facebook API answers? – Nosredna Jun 18 at 0:51
heaven. All answers are revealed to you then. – Jimmy Jun 18 at 0:53
1  
@Nosredna: Stack Overflow! – Zifre Jun 18 at 1:07
2  
@Zifre: What a coincidence! I'm already here! – Nosredna Jun 18 at 1:08
The Facebook APIs really are an embarrassment, I don't understand how they can possible justify their state. – Kevin Montrose Jun 18 at 1:12
show 1 more comment
vote up 2 vote down

Git.         

link|flag
vote up 1 vote down

Well, one of the worst is Perl/Tk.

It's poorly documented.. even the O'Reilly book has terrible errors in it. The parameters to similar function calls are inconsistent. There are strange bugs, like scroll boxes not adding scroll bars when needed, but only if certain packing options are used. The widgets just look strange sometimes.. I could go on and on..

Yikes.

link|flag
vote up 1 vote down

The visual studio API for creating language plugins. Not the extensibility API which isn't too bad but the VSIP api for actually creating new project types, debuggers etc. All ugly-ass COM interfaces with indecipherable names and very little documentation. Might have improved since I used it but uurch - it was pretty nasty.

link|flag
vote up 1 vote down

Microsoft Office OLE Automation... nothing like a dialog box popping up here and there telling me that my margins are too small...

link|flag
vote up 1 vote down

Anything involving SOAP in Ruby. The mismatch between the two is so much that it just does not turn out well. The ruby soap library also does some fun things when generating code from WSDL. My favorite is that it doesn't namespace the classes generated from the webservice. If the webservice uses the same class names as your rails models, then the webservice classes override your models. If you want to use two SOAP services that have any overlap in class names, then the behavior is determined by whichever service code is loaded first. The gem version of soap4r versus the standard library version can also cause hilarity.

link|flag
vote up 1 vote down

Not sure if this counts as "third party" since the API is by Sun and for Java, but it's an extension API: JAI (Java Advanced Imaging). As far as I can tell the designers of this API hated static type checking.

One of the core parts of the API is a class called JAI with a bunch of create methods that take a String identifying an operation and some number of Object and/or int parameters, and return an object representing the operation. You need to create these operation objects to do pretty much anything, and at the time I was using it (several years ago) the only way to do this was to go through these create methods.

link|flag
vote up 1 vote down

OpenSocial API - a true nightmare.

link|flag
vote up 1 vote down

Spring.

link|flag
vote up 0 vote down

Awhile back I was working with a fairly old COM component. I started using a few new functions on the component, wrote some tests and watched them fail miserably. Several days of debugging later I decided that I must have misunderstood what the new functions did because they were succeeding but not having the effect I would expect. I dug around a bit and found the source code and to my surprise I was greeted with something similar to the following

HRESULT SomeObject::SomeMethod() {
  // Even though we implement IFoo, we don't support this operation
  return S_OK;
}
link|flag
vote up 0 vote down

Not a 3rd party really, but Solomon Accounting, which was purchased by Great Plains and then Microsoft, was absolutely, positively the worst piece of !@$% I've ever encountered.

link|flag
My sister, an accountant, calls it "Great Pains". – Jim Ferrans Jun 18 at 4:44
vote up 0 vote down

The Adobe forms API (using OCX controls) was also pretty awful circa 2001.

link|flag
vote up 0 vote down

The Win32 API.

One function, CreateFile, can do all of the following:

  1. Open, create, append to a file
  2. Open raw access to physical disks
  3. Open raw access to volumes
  4. Open file streams (NTFS only!)
  5. Open directories
  6. Open "changers" (whatever those are)
  7. Open COM/Parallel Port resources
  8. Open consoles (Consoles!!!)
  9. Open mail slots (what?)
  10. Open pipes

It's as if Microsoft engineers would have been penalized if they created another function to break this one up. But I imagine that this was purely a geek choice:

Well all these distinct resources abide by the same interface. Therefore, they should all be created by the same function. Eureka!!!

link|flag
1  
Um... that is actually sometimes a good thing. See Plan 9. Everything is a file. – Zifre Jun 18 at 1:08
Let me be clear - I'm all for nice generic interfaces. My complaint here is about the single factory method. If I see CreateFile in code, I have to sanity check every input to it to make sure people don't accidentally open the wrong resource. Combine that security problem with the huge combination of parameters, and you have a real mess. – Frank Krueger Jun 18 at 1:49
It's a good thing provided you can treat everything as a file. However, a "create file" API probably should never be used to open a resource that can't be created in software. – unknown (google) Jun 18 at 1:49
If you don't like it so much, you could go over to the Unix (/Linux/BSD/Mac OS X) world...where device files not only exist, the entire infrastructure is built on them. The Unix mindset even manages to squeeze a random number generator in there (fopen /dev/random). – David Jul 23 at 19:12
vote up 0 vote down

Some APIs aren't actually methods to be called, instead they're complicated machine-readable data (sometimes using a binary format) to be parsed.

link|flag
vote up 0 vote down

Gracenote cddb - we had to pay a lot of money to license it, and they got their information from volunteers. Then they kept releasing different versions to us via CDs in short timeframes and changing symbol names and library names so the code had to change. It was incredible.

Horrible company.

if I remember correctly the sample code was awful too.

link|flag
vote up 0 vote down

Livelink (OpenText) API

  • Everything comes back as some bizarre form of a jagged array
  • The documentation provides absolutely no examples
  • [your favorite search engine] typically returns no results for a given API method
  • The support forums feel near abandoned
  • The only reliable way of understanding the resultant data is to run the data in the Livelink debugger
  • And the finally... the system costs tens (hundreds) of thousands of dollars

The wall next to my desk has an imprint of my head...

A very simple example of getting a value out of an API method:

var workflow = new LAPI_Workflow(CurrentSession);

// every Livelink method uses an out variable
LLValue outValue;
// every method returns an integer that says if the call was
// a success or not, where 0 = success and any other integer
// is a failure... oh yeah, there is no reference to what any
// of the failure values mean, you have to create your own
// error dictionary.
int result = workflow.ListWorkTasks(workId, subWorkId, taskId, outValue);


if (result = 0)
{
  // and now let's traverse through at least 3 different arrays!
  string taskName = outValue.toValue(0).toValue("TASKS").toValue(0).toString("TaskName");
}

Aaack!!! :D

link|flag
vote up 0 vote down

Autodesk FBX.

It has it all, or at least had it all last time I checked!

  1. Memory leaks
  2. Memory corruption and crashes
  3. Multiple ways of doing the same thing.
  4. Binary only distribution
  5. Poor performance and memory wasting.
  6. C++ abi problems meaning there needs to be a specific library for every C++ compiler and runtime library
  7. Leaking of symbols that conflicts with your own during linking
  8. Unspecific about thread safety
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.