gpt4 book ai didi

javascript - 使用 ionicFramework 和 ngCordova 的 HTTPS 请求

转载 作者:行者123 更新时间:2023-11-28 06:31:33 26 4
gpt4 key购买 nike

我能够发送 http 请求并成功获得响应,但是当我通过 HTTPS 发送请求时,我收到以下错误 POST "https://..../request/addimage net::ERR_INSECURE_RESPONSE"

这是我的代码

   .controller('imageCtrl', function ($scope, $cordovaCamera, $ionicLoading, $http, $ionicPopup, $ionicPopover, $state, userService, $ionicSideMenuDelegate, $rootScope, $cordovaDevice) {

var imageX; //save the base64
$scope.takePhoto = function(){
var options = {
quality: 50,
destinationType: Camera.DestinationType.DATA_URL,
sourceType: Camera.PictureSourceType.CAMERA,
allowEdit: true,
encodingType: Camera.EncodingType.JPEG,
targetWidth: 50,
targetHeight: 50,
popoverOptions: CameraPopoverOptions,
saveToPhotoAlbum: false,
correctOrientation:true
};

$cordovaCamera.getPicture(options).then(function(imageData) {
imageX = imageData;



}, function(err) {
// error
});
};

$scope.uploadPhoto=function(){

var uuid = $cordovaDevice.getUUID();

var dataj ={
image:imageX,
device_id:uuid,
picture_format:"jpg"
};

$http.post('https://..../request/addimage',dataj)
.success(function (data) {
//success


}).
error(function (data, status) {
//error

});


};


})

最佳答案

请求可能被阻止,因为它所请求的资源上的 SSL 配置存在问题。

我遇到了同样的问题,并通过修复我通过 HTTPS 请求的资源上的 SSL 链来解决它。尝试使用此站点来识别并解决 SSL 配置问题:https://www.ssllabs.com/ssltest/analyze.html

关于javascript - 使用 ionicFramework 和 ngCordova 的 HTTPS 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34672916/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com