Permission error while loading contact photo in application

Hi all,
I am using METEOR@1.2.0.2 and trying to get device contacts in my application. I have done with getting all parameters but facing permission issue in displaying contact image which is saved there in mobile device.

Getting error: “Not allowed to load local resource: content://com.android.contacts/contacts/3/photo”

Here is my code:
var fields = [“displayName”, “name”, “emails”, ‘photos’];
contacts = navigator.contacts.find(fields, onSuccess, onError, options);
function onSuccess(contacts) {
callback(contacts.map(function(v){
var json = {
id: v.id,
value:v.displayName ,
displayName:v.displayName,
_id: v.id,
isDummy: false,
email: v.emails==null?’’: v.emails[0].value,
s3PictureUrl: v.photos==null?"/img/blank_user.png":v.photos[0].value
};
return json;
}));
}

I have tried finding solution for my problem but got nothing. Please let me know how to display contact image in application.