import { Instagram } from '@awesome-cordova-plugins/instagram/ngx';
constructor(private instagram: Instagram) { }
...
this.instagram.share('data:image/png;uhduhf3hfif33', 'Caption')
.then(() => console.log('Shared!'))
.catch((error: any) => console.error(error));