I am trying to shorten a URL using goo.gl URL Shortener API an open source library (qwest.js). I've achieved it successfully using jquery though, but its giving me error "This API does not support parsing form-encoded input." when done using qwest.
My code with jquery :
var longURL = "http://www.google.com/"; $.ajax({ url: 'https://www.googleapis.com/urlshortener/v1/url?key=AIzaSyANFw1rVq_vnIzT4vVOwIw3fF1qHXV7Mjw', type: 'POST', contentType: 'application/json; charset=utf-8', data: '{ longUrl:"'+ longURL+'"}', success: function(response) { console.log(response) } }) .done(function(res) { console.log("success"); }) .fail(function() { console.log("error"); }) .always(function() { console.log("complete"); }); and the non-working code with qwest.js
var longURL = "http://www.google.com/" qwest.post('https://www.googleapis.com/urlshortener/v1/url?key=479dfb502221d2b4c4a0433c600e16ba5dc0df4e&', {longUrl: longURL}, {responseType:'application/json; charset=utf-8'}) .then(function(response) { // Make some useful actions }) .catch(function(e, url) { // Process the error }); any help would be highly recommended.