AngularJs connection with a restful api with basic authentication -


i want use restful api of montastic implement functionality on angularjs website. unfortunately can't connect montastic. montastic api here https://github.com/montastic/montastic-api-doc

i have use curl in angularjs curl -h 'accept: application/json' -h 'content-type: application/json' -u daniel@metadot.com:123456 https://montastic/checkpoints/index own user password have encoded in base64 have tested curl , works on hurl.it

to connect me montastic in angularjs use script:

var app = angular.module('myapp', []); enter code here app.controller('mainctrl', function($scope, $http) {   $http.defaults.headers.common['authorization']= 'basic ';    $http.defaults.headers.common['authorization']= 'basic c3rlcghhbmuuy2f5c3npywxzqgdtywlslmnvbtptzxrhzg90njk=';   $http.defaults.headers.common['accept']= "application/json";   $http.defaults.headers.common['content-type']= "application/json";   $http({     url : "https://www.montastic.com/checkpoints/index",     method : 'get',     })   .success(function(status, data) {     $scope.status = status;     $scope.data = data;       $scope.result = "ok";   }).error(function(data) {       $scope.result = "ko";   }); }); 

so message:

xmlhttprequest cannot load https://montastic/checkpoints/index. request redirected 'https://***montastic.com/login', disallowed cross-origin requests require preflight.

response headers view source cache-control:no-store connection:close content-length:97 content-type:text/html; charset=utf-8 date:thu, 14 may 2015 00:00:08 gmt location:https://***montastic***/login server:apache/2.2.3 (red hat) set-cookie:_montastic_session=6d2c33c9c403301594d943488910a33c; path=/; httponly status:302 found vary:* x-powered-by:phusion passenger 4.0.53 x-runtime:2 request headers view source accept:*/* accept-encoding:gzip, deflate, sdch accept-language:fr-fr,fr;q=0.8,en-us;q=0.6,en;q=0.4 access-control-request-headers:accept, authorization access-control-request-method:get connection:keep-alive host:www.montastic.com 

you can see code on plunkr here http://plnkr.co/edit/real1uvbjh7mzvgsb1mo?p=preview

edit i:

thanks phil realize have use own server-side proxy cors angularjs. beginner in angularjs , don't know how can build it. search on internet solutions seems hard develop.

have got idea? please me :)


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -