The previous question on this topic does not work for me, and most of them did not answer.
I want the user on the facebook page to click the button. The updated facebook is installed on the iphone, the last cord is installed, the inappbrowser plugin is used. Now my code
window.open('https://www.facebook.com/latechnologies', '_system','location=yes');
This works great on Android. But in the IOS link the nationβs facebook application is posted and take me to the Facebook wall, not to the page. This means that it simply opens its own application, but does not take on any page.
Then I searched and tried some suggestions
window.open('fb://facebook.com/latechnologies', '_system','location=yes'); window.open('fb://pages/latechnologies', '_system','location=yes'); window.open('fb://pages', '_system','location=yes');
None of them work. Every time this happens on the user's wall. How can I just take the user to the facebook page? The native application or browser does not matter. Just want to take the user to the page .....................
source share