You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Joe Bowser (JIRA)" <ji...@apache.org> on 2014/09/17 23:01:35 UTC

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

     [ https://issues.apache.org/jira/browse/CB-7507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Joe Bowser updated CB-7507:
---------------------------
    Component/s: Plugin File Transfer

> 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, Plugin File Transfer
>    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)