- feature #44: expose "getCookieString" method

- update version number
This commit is contained in:
Sefa Ilkimen 2017-11-16 23:22:29 +01:00
parent b9bc1b0054
commit 9d6406277c
4 changed files with 12 additions and 8 deletions

View File

@ -1,16 +1,13 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
# Change these settings to your own preference
indent_style = space
indent_size = 4
indent_size = 2
# We recommend you to keep these unchanged
end_of_line = lf
@ -19,4 +16,4 @@ trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false

View File

@ -1,5 +1,9 @@
# Changelog
## v1.9.0
- Feature #44: "getCookieString" method is exposed
## v1.8.1
- Fixed #27: "uploadFile" method doesn't return data object on iOS (thanks Faisalali23 and laiyinjie)

View File

@ -1,6 +1,6 @@
{
"name": "cordova-plugin-advanced-http",
"version": "1.8.1",
"version": "1.9.0",
"description": "Cordova / Phonegap plugin for communicating with HTTP servers using SSL pinning",
"scripts": {
"testandroid": "./scripts/build-test-app.sh --android --emulator && ./scripts/test-app.sh --android --emulator",

View File

@ -177,7 +177,10 @@ var http = {
removeCookies: function (url, callback) {
cookieHandler.removeCookies(url, callback);
},
setRequestTimeout: function(timeout) {
getCookieString: function (url) {
return cookieHandler.getCookieString(url);
},
setRequestTimeout: function (timeout) {
this.timeoutInSeconds = timeout;
},
enableSSLPinning: function (enable, success, failure) {
@ -186,7 +189,7 @@ var http = {
acceptAllCerts: function (allow, success, failure) {
return exec(success, failure, 'CordovaHttpPlugin', 'acceptAllCerts', [allow]);
},
disableRedirect: function(disable, success, failure) {
disableRedirect: function (disable, success, failure) {
return exec(success, failure, 'CordovaHttpPlugin', 'disableRedirect', [disable]);
},
validateDomainName: function (validate, success, failure) {