I'm having a problem authenticating using XMLHTTPRequest like this:
XMLHTTPRequest.open('GET', url, false, user, password);
I'm issuing the users/show.json command, which doesn't require
authentication until you exceed 100 calls in an hour. At that point I
begin getting 400 errors.
I'm not sure what the problem is. I am able to authenticate using
curl -u, so I know I should be able to get authentication working with
XMLHTTPRequest. Anyone have any suggestions? Is there more to it
than calling open with user/password?
Jonas