我目前有一个Ionic应用程序可以在InAppBrowser中打开一个网站。
每次移动到另一个URL时,它都会检查域名,如果是Facebook,Twitter或Instagram URL,则会检查 - 1.检查手机是否安装了应用程序2.如果是,请打开应用程序中的URL
我的问题是,我的Facebook代码正在运作,Instagram和Twitter不起作用,任何想法?提前谢谢。
home.ts
//check if link is for social media
CheckSocialMediaLinks(url: string){
//get the domain
var parser = document.createElement('a');
parser.href = url;
var domain = parser.host;
if (domain === "m.facebook.com")
{
this.OpenFacebook(url);
this.navCtrl.pop();
}
else if (domain === "instagram.com")
{
this.OpenInstagram(url);
this.navCtrl.pop();
}
else if (domain === "twitter.com")
{
this.OpenTwitter(url);
this.navCtrl.pop();
}
}
OpenFacebook(url: string){
let app;
if (this.platform.is('ios')) {
app = 'fb://';
} else if (this.platform.is('android')) {
app = 'com.facebook.katana';
}
this.appAvailability.check(app)
.then(
(yes: boolean) => window.open("fb://"+url, '_system'), //IF AVALIABLE
(no: boolean) => window.open("https://"+url, '_system')
);
}
OpenInstagram(url: string){
let app;
if (this.platform.is('ios')) {
app = 'instagram://';
} else if (this.platform.is('android')) {
app = 'com.instagram.android';
}
this.appAvailability.check(app)
.then(
(yes: boolean) => window.open("instagram://"+url, '_system'), //Not working
(no: boolean) => window.open("https://"+url, '_system')
);
}
OpenTwitter(url: string){
let app;
if (this.platform.is('ios')) {
app = 'twitter://';
} else if (this.platform.is('android')) {
app = 'com.twitter.android';
}
this.appAvailability.check(app)
.then(
(yes: boolean) => window.open("twitter://"+url, '_system'), //Not working
(no: boolean) => window.open("https://"+url, '_system')
);
}
修改
进行了一些调试,所有函数都执行了,我发现它没有执行或不起作用的是Instagram或Twitter的应用程序是否可用。 (Facebook工作正常)
我尝试了一些变化,代码看起来很好,任何想法?
Instagram - 应该打开应用内的链接:
(yes: boolean) => window.open("instagram://"+url, '_system')
Twitter应该打开应用程序内的链接:
(yes: boolean) => window.open("twitter://"+url, '_system')
答案 0 :(得分:1)
所以我发现了问题。 Twitter和Instagram必须使用格式。
Instagram的:
window.open("instagram://user?username=whateverusername", '_system')
Twitter的:
window.open('twitter://user?screen_name=whateverusername', '_system')