How to open FB app from the Ionic 3 PWA app for Android. I tried with the below codes which work fine with the hybrid app but not opening FB app from PWA.
window.open("fb://page/?id=" + appid, "_system", "location=no");
window.open("fb://page/" + appid, "_system", "location=no");
window.open("fb://profile/" + appid, "_system", "location=no");
Could you please help me. Thank you so much in advance.
Related
I am launching an https://... URL in iPhone within inAppBrowser. I am trying to call 'loadstop' event for inappbrowser. It is not getting called in Iphone but it works for Android.
Please let me know if there is any API update is required.
Thanks,
I am trying to display my Facebook videos in an ionic 2 app but the URL is not working. In browser, I am getting message "Unavailable
This video can't be embedded." and in emulators the display is blank.
Any suggestions.
I found this link Embeded Video Player it worked for me, I hope this would also help you. To setup Facebook SDK in your ionic app. please visit this link Ionic Facebook Native
Hey guys i have developed a facebook app which uses the permission read_mailbox.When i coded my app and used the app it says the app neeeds to be reviewed for getting the permission read_mailbox.I have submitted my app for review.But i didnt get review after 2 days ..I cant wait anymore ..I have made a test app and when i used that it says the same thing..I have heard that using the test app will have all the privliages.Is it true ??..Or the test app work only if facebook approve the permission ??..
Hope you guys can help me out ...Thanks
The code here (http://pastebin.com/8MLfiQRC) works like a charm for me.
You wrote
<fb:login-button scope="public_profile,email,read_maillist" onlogin="checkLoginState();">
instead of
<fb:login-button scope="public_profile,email,read_mailbox" onlogin="checkLoginState();">
If the Permission dialog pops up, just click on ok (http://imgur.com/AyOZUhf).
I'm testing the Facebook Unity SDK with the example app "Friend Smash".
I've followed the video tutorial : https://www.youtube.com/watch?v=5g0WdYbq-dg
I build the game on my Android Device. I launch the app and when I click on the "Login with Facebook" and authorise the access to my profil, friends etc... It comes back to the "Friends Smash" home screen and nothing appears.
I checked out the Android Log and there is this error :
"Java.io.FileNotFoundException: https://graph.facebook.com/me?fields=id,first_name,friends.limit(100).fields(first_name,id)&access_token=&"
My Unity 3D Version : 4.2.1f4
- Facebook Unity SDK : 4.3.3
- Android : JellyBean 4.2.2
I need help :( Thank you !
I was having the same problem logging in with android, though I didn't check the log for errors.
I solved it by adding the Android platform in the Facebook app settings (in developer.facebook.com), and then pasting the values for "Package Name", "Class Name" and "Key Hashes". The values are present in Facebook settings in the Unity Editor.
I downloaded the sample app from the latest facebook ios SDK. I set my appId in the facebook init, set the appId in the URL scheme.
When i run the app, it opens the facebook app, with a message saying "you already authorized this app, click ok".
When i click ok, it just stays in the facebook app, redirection is not working...
Do you have any idea what i'm missing ?
Thanks, Vincent.
Did you make the change to the .plist file properly?
You say you set your appID in URL scheme but actually it is fb[appId]. So if your appId is 123456, the URL Scheme in .plist should be "fb123456".