मैंने फ़्लिकर फोटो खोज एपीआई के लिए जावास्क्रिप्ट का उपयोग करके एक डेमो बनाया है। अब मैं इसे AngularJs में परिवर्तित कर रहा हूं। मैंने इंटरनेट पर खोज की है और कॉन्फ़िगरेशन के नीचे पाया है।
विन्यास:
myApp.config(function($httpProvider) {
$httpProvider.defaults.useXDomain = true;
delete $httpProvider.defaults.headers.common['X-Requested-With'];
});
सर्विस:
myApp.service('dataService', function($http) {
delete $http.defaults.headers.common['X-Requested-With'];
this.flickrPhotoSearch = function() {
return $http({
method: 'GET',
url: 'http://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=3f807259749363aaa29c76012fa93945&tags=india&format=json&callback=?',
dataType: 'jsonp',
headers: {'Authorization': 'Token token=xxxxYYYYZzzz'}
});
}
});
नियंत्रक:
myApp.controller('flickrController', function($scope, dataService) {
$scope.data = null;
dataService.flickrPhotoSearch().then(function(dataResponse) {
$scope.data = dataResponse;
console.log($scope.data);
});
});
लेकिन फिर भी मुझे वही त्रुटि मिली। यहाँ कुछ लिंक मैंने कोशिश की हैं: