My iOS native App is using the Facebook Feed Dialog to post to user's wall.
But the dialog buttons are in unknown language instead of English. See the screen shots below:
"Ghairi" "Sambaza"?
How to I force the buttons to English?
I've had a user report the same issue. Looks like it's a problem on Facebook's side:
https://developers.facebook.com/bugs/407246299295529?browse=search_4fa410ea79db26337556383
Related
The mailto link was working as expected on previous versions of iOS. After updating to 12.2+ when opening default mail app using the mailto link the mail app works. But when coming back to the PWA, the application stuck on a blank white screen due to the iOS feature update to PWA (saving app state when switching apps)
Now i'm stuck with a blank screen even after swipe close the app.
I'm using the following code to lunch the mail app
send mail
I have tried all other options of targets, only the _blank target opens the default mail app. Other targets are not working as mentioned in this stack overflow answer.
Here is the screenshot of how the blank screen looks after coming back from mail app
have anyone faced similar issue?
I've tried the following solution in my own PWA and it works great (iOS 12.3.1, iPhone 7+)!
On your PWA page, you create the link as following:
<a onclick="sendFeedback()">Send Mail</a>
And you define this function:
function sendFeedback(e)
{
window.location.href = "mailto:example#example.com";
}
Once clicked, it launches the default mail app. When you go back to your PWA, you will land on the page where the link is located. There won't be a blank screen.
In my App, I'm using UIActivityViewController to have users share urls via Twitter. This worked great prior to iOS9. Ever since the update to iOS9, this feature shows a strange effect when adding mentions or hashtags to the tweet. Scenario like this:
A user decides to share a url. User taps a button that opens an ActionSheet with all sharing options like SMS, WhatsApp, Email and Twitter.
User chooses Twitter, tweet editor opens filled with the url. Everything good so far.
User wants to add a mention or hashtag. User starts typing and selects an entry from the list of suggestions.
This results in the disappearance of the whole text from the tweet editor view. The app doesn't crash, just the text vanishes.
When adding a mention or hashtag just by typing #example_name or #examplehashtag rather than picking from the list, it works all fine.
I can observe the same behaviour on my iPhone 5S with soundcloud app, v3.14.0.
I'm sure others must have the same problem after updating to iOS9. Any help is highly appreciated.
Since Facebook introduced it's "profile completion messages", trying to log in and allow the app to give permissions for a user without friends or photos, will block the user to reach the "Cancel" and "Allow" buttons on the bottom of the page.
See a screenshot attached.
It seems like the web view is not scrollable.
I'm using Sharekit 2.0 sdk.
Any ideas on how this can be fixed?
Thanks
For some websites/webapps, using Mobile Safari on the website causes a pop-up to come up advising the user that they can add the site/app to their home screen. I tried to replicate it but I can't figure it out.
Is there a JS library to do this or is there a meta tag to add to my html?
Most of them use add to home screen from cubiq
I am trying to add ShareKit 2.0 in my app (with ARC), Xcode 3.2 and device 4.x or 5.0,
I have followed ALL configuration steps from https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit
In the app when I click on "Facebook" button to share, I get loggin OK, but once I do loggin the view disappear and it does not nothing more.
It doesn't display link in dialog window.
Any idea?