I'm trying to make a post request via ajax using jQuery (for the BaseCamp API), and I can't seem to get it to work. I can get it to work using curl just fine, so I know it's something I'm doing wrong with jQuery. Here's the curl command which works:

curl -H "Accept: application/xml" -H "Content-Type: application/xml" -u my.user.name:my.password -d "<time-entry><person-id>123456</person-id><date>08/23/2009</date><hours>8</hours><description>This is a test.</description></time-entry>" https://my.url.updatelog.com/todo_items/1234567/time_entries.xml

and here's the code I'm trying with jQuery:

var post_url = bc_base_url + "/todo_items/" + todo_id + "/time_entries.xml";
var xmlData = "<time-entry><person-id>" + bc_user_id + "</person-id>" + 
		"<date>" + date + "</date>" +
		"<hours>" + time + "</hours>" +
		"<description>" + description + "</description>" + 
		"</time-entry>";
$.ajax({
        		type: "POST",
        		url: post_url,
        		data: xmlData,
        		dataType: "xml",
        		contentType: "application/xml",
        		username: "my.user.name",
        		password: "my.password",
        		processData: false,
        		success: function(msg) {
        		  alert("successfully posted! msg: " + msg + ", responseText = " + this.responseText);
        		},
        		error: function (xmlHttpRequest, textStatus, errorThrown) {
        		  alert("error : " + textStatus + ", errorThrown = " + errorThrown);
        		  alert("this.reponseText = " + this.responseText);
        		}
        	})

Anyone have any ideas?

Thanks!

link

71% accept rate
1  
what comes back as the error when you view it in Firebug? Could it be cross-domain issues? – seanmonstar Aug 24 '09 at 22:51
Are you posting to the same domain? – karim79 Aug 24 '09 at 22:53
1  
Just FYI, the link in the accepted answer goes to a Go-Daddy parked domain page. – Joshua Miller Nov 2 '11 at 20:54
It's OK, @JoshuaMiller, I replaced it with a link to archive.org's copy of the page. – Don Kirkby Nov 2 '11 at 21:35
feedback

2 Answers

up vote 3 down vote accepted

As karim79 said, you can't post to a different domain.

See Nathan's post for more options.

link
feedback

Post it to your server, pass the post onto basecamp from the application code, and pass the messages back down.

link
feedback

Your Answer

 
or
required, but never shown

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