Goal :- Open facebook page url into facebook application
I am using ionic version 1.6
I have tried
<a ng-click="openFb()">
<img src="img/fb.png" alt="" width="auto" height="auto">
</a>
In controller file i have my function below.
$scope.openFb = function() {
window.open('fb://page/1372537532795807', "_system");
};
Above after searching lot i have found that if you wants to open page you have to pass fb:://page[page_id]
than fb:://profile/[page_id]
But when i clicks on button nothing happens not even opening installed facebook application on my device.
Looking forward to have some help.
Thank you in advanced.