You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Robbie Elias (JIRA)" <ji...@apache.org> on 2014/09/10 06:16:28 UTC

[jira] [Created] (CB-7507) Params Not Sent Over HTTPS

Robbie Elias created CB-7507:
--------------------------------

             Summary: Params Not Sent Over HTTPS
                 Key: CB-7507
                 URL: https://issues.apache.org/jira/browse/CB-7507
             Project: Apache Cordova
          Issue Type: Bug
          Components: Android
    Affects Versions: 3.5.0
         Environment: Android 4.4.4
            Reporter: Robbie Elias


The title says it all, I can't access any POST variables in my PHP code when completing the file transfer over HTTPS. However, this works fine when I use HTTP.

Here's my code:

{code}
var options = new FileUploadOptions();
options.fileKey = "file";
options.fileName = imageURI.substr(imageURI.lastIndexOf('/') + 1);
options.mimeType = "text/plain";

var params = {};
params.userid = localStorage.userid;
options.params = params;

var ft = new FileTransfer();

ft.upload(imageURI, encodeURI("https://www.mywebsite.com/upload.php"), win, fail, options);
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)