wymsee / cordova-HTTP

Cordova / Phonegap plugin for communicating with HTTP servers. Allows for SSL pinning!
MIT License
372 stars 301 forks source link

getting empty string as error of error #138

Open jrwpatterson opened 7 years ago

jrwpatterson commented 7 years ago
        this.cordovaHTTP.get(url, { "test": 1 }, { "Cookie": cookieString }).then((response) => {
                console.log(response);
        }, (error) => {

            console.log("error", error);
})

when I run the code above I get an error, but the error is error.error = "". Not helpful... any suggestions?