我想打开Facebook的ionic
应用中与用户对应的个人资料页面。我使用cordovaInAppBrowswer
插件。
url = 'fb://profile/vahid.vdn';
var options = {
location: 'yes',
clearcache: 'yes',
toolbar: 'yes'
};
$cordovaInAppBrowser.open( url, '_system', options ).then(function(event) {
// facebook app is already installed and opened successfully
})
.catch(function(event) {
// facebook app isn't installed in this device
url = 'https://facebook.com/vahid.vdn'
$cordovaInAppBrowser.open( url, '_system', options );
}
这只是在Facebook应用程序中打开Facebook的主页。 (平台: iOS )
有什么想法吗?
答案 0 :(得分:0)
试试Facebook,
url = 'fb://profile?id=vahid.vdn';