Goal: when I open a specific app, it automatically opens MyApp first before I can proceed to the specific app.
Say I want to open my Gmail app. When I click Gmail, before Gmail can open, I want to open/display MyApp that says "Hey - are you sure you want to open up Gmail right now?" first as a reminder. Then, I can click "Yes" and continue on to opening Gmail. Does Apple let you do this?
Related
I try to open a specific screen of my app through Siri.
I'm done with CustomIntent and Siri shortcuts. But I expect that users do not need to do anything(do not need to add shortcuts to Siri), they still tell Siri "Hey Siri, do xxx in myApp" and myApp will open the specific screen.
How to handle this?
I declared a url scheme in my ios app, myapp so that my app will be able to open from another apps like sms and gmail.
For sms app, this works fine. SMS detects myapp:// and shows it as a link. On clicking, it opens my app. But this fails for gmail. When I receive an email with the same url in gmail app. It fails to detect it as a link, which results to unable to open my app.
How can I achieve deep linking my app with gmail as well?
Thank you in advance.
In case of a url scheme the third party app like Gmail would also have to add support for your url scheme. Maybe Universal Links can work in your case? https://developer.apple.com/ios/universal-links/
Verifying an email address using account kit the user receives an email that after the user has verified the email they have a option to go back into the app by pressing open app. When pressing open app it says "safari cannot open the page because the address invalid?"
Is there anything I could do client side to make pressing the button open actually open the app not give an error message?
I needed to select target and then info. add url type and then for url scheme I needed to say ak"facebookAppId"
I have setup firebase for receiving universal links and custom url schemes. I have 2 issues here,
Clicking links on the app like whatsapp opens the browser but not the
app, however, if I get the link to the notes app and open it, it
shows an option of "open in app" after doing this, everytime I open
it in whatsApp it seems to work fine.
When I try to open links via chrome from the email app, it redirects
to the app via custom url scheme, however the problem is that, the
next time I open the app, it tends to repeat the action. Although I
have already handled the custom url scheme previously, I dont know
why its trying to do it again, kinda freaks me away.
Facebook's mobile app used to know how to open the url http://facebook.com/<id_of_thing> and it used to open that up to a specific photo in the app. What we discovered last week (11/6/15) was that the app still listens for that url pattern, but it doesn’t know how to open up to a specific photo (it opens up to the blank page.) If we send the full url of the photo to the user, something like http://facebook.com/<pageid>/<album_id>_<photo_id>, the Facebook app doesn’t listen for that url pattern. So it opens up in a browser instead. How do I get a link sent to a user via text message or email to open up in the Facebook app on a mobile device?