Всем привет. Пытаюсь в ionic сохранить картинку в галерею. Но столкнулся с такой проблемой, что ссылки вида
http://site.com/photo-1415?param1=value¶m2=value
непринимаются, файл не сохраняется.
Обычные ссылки вида
http://site.com/photo.jpg
работают.
вот пример кода
import { PhotoLibrary } from '@ionic-native/photo-library';
constructor(public navCtrl: NavController, private photoLibrary: PhotoLibrary) {
}
saveImage(i) {
const imageUrl = this.images[i].urls.full;
console.log(imageUrl);
this.photoLibrary.requestAuthorization().then(() => {
this.photoLibrary.saveImage(imageUrl, 'MyAlbum').then(function () {
console.log("Promise Resolved");
}).catch(function () {
console.log("Promise Rejected");
});
}).catch(err => console.log('permissions weren\'t granted'));
}