jQuery $.post with PasteBin API

Posted by John K on Stack Overflow See other posts from Stack Overflow or by John K
Published on 2010-05-23T03:39:44Z Indexed on 2010/05/23 3:51 UTC
Read the original article Hit count: 311

Filed under:
|
|

Ok,

I'm trying to use jQuery $.post with the PasteBin API to create a PasteBin page and grab the URL (which the API says it returns). Here is my code so far:

$('#send_code').click(function(){
    $.post('http://pastebin.com/api_public.php', 
            { paste_name: $('#paste_name').val(), paste_code: $('#paste_code').val() },
            function(data){
                alert(data);
            });
}

The above script creates the page just fine (I can find them on PasteBin). However, all that is returned is an empty string. I've tried using this same API with php and cURL, and I'm able to retrieve the URL just fine. Can anyone see if I'm doing something wrong? Thanks!

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about post