I'm currently playing with the Freckle API in an iOS app and I'm being returned a 406 HTTP error. I tested with some other frameworks and they do return the content presented by the API. But with ASIHTTPRequest, a ’406 Not Acceptable’ error is all I'm getting.
Try doing a GET request to the following url: https://apitest.letsfreckle.com/api/projects.json?token=lx3gi6pxdjtjn57afp8c2bv1me7g89j
I'm wondering why this is happening. Does anyone have an idea why and a possible fix? I'm pretty sure it has to do with accept-headers, though haven't found a way to fix it.
Thanks
[request addRequestHeader:@"Accept" value:@"application/json"]? – micpringle Jul 28 '11 at 12:46https://apitest.letsfreckle.com/api/projects?token=lx3gi6pxdjtjn57afp8c2bv1me7g89j– micpringle Jul 28 '11 at 14:00https://apitest.letsfreckle.com/api/projects.xml(I know you want JSON, but this is just a process of elimination) but set the following request headers[request addRequestHeader:@"Accept" value:@"text/xml"]and[request addRequestHeader:@"X-FreckleToken" value:@"lx3gi6pxdjtjn57afp8c2bv1me7g89j"]– micpringle Jul 28 '11 at 14:19