Commit Graph

74 Commits

Author SHA1 Message Date
Andrew Stephan c35af633a4 fixed some issues with responseSerializers and moved some functions out of obj-c into javascript 2016-02-19 17:13:48 -05:00
Andrew Stephan 340e45a381 Fixed ios code to work with AFNetwork 3.0.x 2016-02-18 20:31:21 -05:00
Andrew Stephan 434d8dfd2b updated afnetworking 2016-02-18 18:15:57 -05:00
Andrew Stephan 8e27b5b1dd Merge pull request #76 from denisbabineau/wymsee_master
File plugin update and more
2016-02-18 18:02:41 -05:00
Denis Babineau dbe9d003b8 remove unused #import to non-existant file (now a private header in CordovaLib) 2016-02-16 10:36:06 -04:00
Denis Babineau c9a9296396 missing file reference in plugin.xml 2016-02-10 14:34:05 -04:00
Dan McNamara 9ed1c45e77 Merge pull request #51 from hideov/patch-1
Update README.md
2015-10-09 16:28:14 -04:00
Denis Babineau 07e0195c91 add HEAD request support and return response headers for all request types both for success and failures. 2015-10-07 13:33:07 -03:00
Denis Babineau 141f996052 fix downloadFile method on ios; invalid native path and not using proper instance of CDVFile 2015-08-26 23:58:50 -03:00
Denis Babineau cabb0db9de acceptAllHosts can now be called on both platform. 2015-07-28 11:15:32 -03:00
Denis Babineau 43b04a94e2 add acceptAllHosts call to test self-signed certificate in dev environment (still performs pinning but skips host validation)
TODO: iOS
2015-07-28 11:04:09 -03:00
Eddy Verbruggen 1c1f716cf8 #7 android: acceptAllCerts doesn't call callbacks 2015-07-28 11:00:20 -03:00
Denis Babineau 125248c267 Merge commit 'b08f7b43337ab19d6a0b9dce0a3cfb1ea348ca5d' into wymsee_master
* commit 'b08f7b43337ab19d6a0b9dce0a3cfb1ea348ca5d':
  Request Internet permission in AndroidManifest.xml
  #2 iOS doesn't compile because of a missing framework
2015-07-28 10:59:31 -03:00
Denis Babineau 20f39b32f1 update cordova file plugin dependency to new cordova-plugin-file name/version 2015-07-15 15:21:39 -03:00
hideov 31c5ad9bd3 Update README.md
fixed first argument in various examples
2015-05-07 11:51:39 +02:00
Eddy Verbruggen b08f7b4333 Merge pull request #4 from Icenium/bektchiev/internet-permission
Request Internet permission in AndroidManifest.xml
2015-03-10 16:19:13 +01:00
CSullivan102 6ea22f99e8 Add SystemConfiguration framework to plugin.xml for iOS 2015-03-09 16:01:00 -04:00
Martin Bektchiev d03c6a5a48 Request Internet permission in AndroidManifest.xml 2015-02-03 15:08:53 +02:00
Andrew Stephan 66b7a31bc6 updated version number to 0.1.4 0.1.4 2014-12-29 09:21:38 -05:00
Andrew Stephan 83e903b409 Update README.md 2014-12-09 14:04:38 -05:00
Andrew Stephan 5ed4dce809 Merge pull request #29 from cvillerm/master
Added section in README about limitations + CA pinning
2014-12-09 14:03:19 -05:00
Claude Villermain 872b5fa013 Added section about limitations + CA pinning 2014-11-12 08:49:04 +01:00
Andrew Stephan 75296f0734 Merge pull request #23 from pvsaikrishna/moduleexports
Exporting http object to use it through clobbers target defined .
2014-11-10 10:32:42 -05:00
Sai Krishna 978708890b Exporting http object to use it through clobbers target defined in plugins.xml.
Doing this helps in using the plugin through ngCordova, a much better way of using Cordova plugins from Angular.
2014-10-29 10:27:34 +00:00
Andrew Stephan 4fc676cc67 Merge pull request #20 from Telerik-Verified-Plugins/load-certificates-from-www-folder
#1 Allow loading certificates from within the www folder
2014-10-22 15:16:32 -04:00
Andrew Stephan 0b01dc8b69 added url for cordova file plugin 2014-10-14 10:28:03 -04:00
EddyVerbruggen dc123932e3 #2 iOS doesn't compile because of a missing framework 2014-10-14 15:52:33 +02:00
EddyVerbruggen 0d67760abb #1 Allow loading certificates from within the www folder 2014-10-14 15:49:01 +02:00
CSullivan102 5c138dc39f Merge pull request #15 from wymsee/updateAFNetworking
Updated AFNetworking to version 2.4.1 to fix crash when building in Xcode 6
v0.1.3
2014-09-22 17:34:17 -04:00
CSullivan102 be660f97d8 Updated AFNetworking to version 2.4.1 to fix crash when building in Xcode 6 2014-09-22 00:05:07 -04:00
Andrew Stephan e562bd0627 Merge pull request #12 from SpiderOak/report-ssl-pinning-error
Missing imports for SSLHandshakeException reporting
2014-09-15 10:26:55 -04:00
Andrew Stephan c5f5a33f07 Merge pull request #10 from andrey-tsaplin/fix-filenames-ios
Fixed filenames for case-sensitive filesystems
2014-08-27 10:49:52 -04:00
Tsaplin Andrey 7a20200f8e Fixed filenames for case-sensitive filesystems 2014-08-27 11:47:31 +04:00
Tommy-Carlos Williams bd8207a390 Missing imports 2014-08-22 12:20:25 +10:00
Andrew Stephan e507759527 Merge pull request #9 from SpiderOak/report-ssl-pinning-error
Reports SSL Handshake errors when they occur (android)
2014-08-20 13:19:01 -04:00
Andrew Stephan e83229e837 Merge pull request #6 from SpiderOak/readme-typos
Examples used wrong case for cordovaHTTP object
2014-08-20 13:09:35 -04:00
Tommy-Carlos Williams 03dc55bdf9 Reports SSL Handshake errors when they occur
Instead of just reporting a 500 error with some generic text, I thought it might be useful to know when an actual SSL related error occurred. It the idea is to prevent MitM attacks, it might be important to warn users it might be happening.

Currently doesn't drill down the `getCause()` tree very far, just determines if it was an `SSLHandshakeException`.
2014-08-20 19:15:15 +10:00
Tommy-Carlos Williams 7d67b295fa Examples used wrong case for cordovaHTTP object
Many or all of the examples used `cordovaHttp` instead of `cordovaHTTP`

This made cutting and pasting them fail and might cause confusion.
2014-08-20 18:50:29 +10:00
Andrew Stephan f9fc028546 Update README.md v0.1.2 2014-04-27 17:17:16 -04:00
Andrew Stephan 4f3733d38f fixed case of javascript filename 2014-04-22 14:40:11 -04:00
Andrew Stephan 8c1df2fdca corrected capitalization of folder android in plugin.xml 2014-04-22 14:38:52 -04:00
Andrew Stephan 0b652756e5 imported UnknownHostException where necessary and updated version v0.1.1 2014-04-08 17:25:04 -04:00
Andrew Stephan 7da0b93c78 updated version v0.1.0 2014-04-08 16:47:34 -04:00
Andrew Stephan 38854b3ca7 send back status 0 when the host cannot be resolved to match iOS. Also removed some logs 2014-04-08 13:08:58 -04:00
Andrew Stephan d55f1bdc20 changed booleans to AtomicBooleans 2014-04-03 11:32:33 -04:00
Andrew Stephan bfa5d47cf6 fixed bug with adding more than 1 cert 2014-04-02 15:31:38 -04:00
Andrew Stephan 4a67a0d0f1 updated readme 2014-04-01 13:13:30 -04:00
Andrew Stephan 19f9fc4028 fix crash when angular is not defined 2014-04-01 13:06:39 -04:00
Andrew Stephan d0bebc3f39 undo previous change 2014-04-01 12:30:41 -04:00
Andrew Stephan 4371f56b43 prevent crash when angular is not defined 2014-04-01 12:28:27 -04:00