Estoy tratando de redirigir a un usuario a Twitter si así lo desea. Para eso uso window.open pero simplemente ignora esa instrucción. Funciona bien en otras páginas, pero en esta función simplemente no funciona. ¿Alguna sugerencia?
answerQuestion() { if (!this.isAnswerValid()) { this.presentToast('Answer must be between 1 and 140 characters') return } this.loading.present() this.questionsService.answerQuestion(this.question, this.answerText, this.imageURL) .then(res => { if (res) { if (this.twitter) { let q = this.question.question if (q.length > 100) { q = q.substring(0, 101) } let a = this.answerText if (a.length > 100) { a = a.substring(0, 101) } const url = 'https://nonicapp.web.app/user/' + this.auth.user?.username const tweet = q + " - " + a + " " window.open('https://twitter.com/intent/tweet?text=' + tweet + '&hashtags=nonic&url=' + url, '_system') } this.router.navigateByUrl('/inbox', { replaceUrl: true }); } else { this.presentToast('Something went wrong, please try again.') } }) .catch(err => { console.warn(err) this.presentToast('Something went wrong, please try again.') }) .finally(() => { this.loading.dismiss() }) }También tuve algunos problemas con window.open , así que comencé a usar el complemento del capacitor del navegador
es bastante simple
import { Browser } from '@capacitor/browser'; ... async openUrl(url) { await Browser.open({ url: url }); };