FB.ui not popping up on iOS browser - facebook

I am setting up Facebook's Share Dialog for a website that is done in React. It seems to be working everywhere except on iOS browser (chrome).
I know that iOS are more strict with permissions. I'm not sure how to debug this.
Anyone knows possible causes of this?

the fix for me was to use display:dialog for iOS instead of display:popup

Related

Is crosswalk-project still available or is there an alternative

I don't like how my Android WebView app displays on some devices, so when I found out that crosswalk-project could fix that, I went to crosswalk-project.org but the website was down. Is there a way around it or an alternative to it?
Or will using WebChromeClient instead of WebViewClient fix it?
I want my WebView app to display the same across all devices and the Javascript "share" feature in one of the web pages of the website should work.

How to launch an external website from a chrome app?

I'm looking to link to a sign up page on an external webapp via a chrome app. The simplest way to manage this seems to be to open a new tab in the chrome browser (not a new webview in a new window of the app).
Tabs seem deprecated and a webview appears very unofficial and unsafe. Basically, is there a way to effectively do this:
Sign up
And the bigger question of course: is there a better way to approach what seems like a simple problem?
Your conceptions, "Tabs seem deprecated and a webview appears very unofficial and unsafe", seem very strange. tabs is simply not enabled for Apps, and <webview> is alive and well.
But if you must open it in the browser, window.open will do the trick. See also this question.
Edit: Also, upcoming is the chrome.browser.openTab API. Leave your feedback if you have use cases for this feature.

Integrating tumblr with ios

I have been trying to integrate tumblr with my ios app for quite a long time now but its still not working. I am using oauth. It is logging me in but whenever I am clicking on allow it is crashing.
Can anyone please help?
Finally solved the issue....It was a stupid mistake..
Just needed to make the oauth viewcontroller arc enabled.

How can I get safari Bookmarks on iPhone?

I'm now developing new app that needs to show mobileSafari Bookmarks list ...
I want to use common API,but there seems no apis...
I saw following URL and copy code to my app..
http://www.telesphoreo.org/pipermail/iphone-gcc/2009-February/000632.html
But,it doesn't show any of bookmarks list..
Any idea?
Please help me...
Thanks and regards...
Mobile Safari bookmarks are not accessible via the iOS SDK currently. Even if your example code worked, it would most likely be rejected by Apple. Sorry.

Works on Emulator and Safari browser but not on real IPhone

I am building a website that runs on IPhone. I am facing a issue where in the application works on browsers and emulator. But its not working on real IPhone device.(Basically my login submit is not happening on IPhone!)
Also the console doesnt shown me any error on IPhone. Have anybody faced such an issue. What could be the issue any idea.......solution is appreciated!
Thanks,
Justin Samuel.
I found the cause of the issue.Basically my config has a setting which gives my site url. eg: currently it was something like http://xyz.com.
Now this worked on normal browsers and emulators. But when it comes to IPHone i had to change the config variable with something like http://www.xyz.com.
Browser was smart enuf to find out what the handle this but not IPhone browser.
Thanks Mahboudz and Mike for you valuble time. Yes I should have added more details while giving the question. Sorry for that!!
Thanks All.