Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Using Apple's URL Scheme Reference for FaceTime Links on a website, the link opens the FaceTime app but doesn't pass the number/email to be called or start the FaceTime call.

<a href="facetime:[email protected]">Connect using FaceTime</a>

Is this scheme still supported? Any thoughts?

Additional Info Edit: This is the actual code I'm using:

<a href="facetime:[email protected]">Apple FaceTime</a>

This image shows the popup asking if I wish to place a FaceTime call after clicking the link:

FaceTime call from webpage URL

This image shows the open FaceTime app where nothing happens.

FaceTime call from webpage URL

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
862 views
Welcome To Ask or Share your Answers For Others

1 Answer

When you click on facetime URL from a webpage it'll prompt user for permission. Auto call initiation will only work from native apps and won't work from webpages.

From FacetimeLinks Reference

When a user taps a FaceTime link in a webpage, iOS confirms that the user really wants to initiate a FaceTime call before proceeding. When an app opens a URL with the facetime scheme, iOS opens the FaceTime app and initiate the call without prompting the user. When opening FaceTime URLs on OS X, the system always prompts the user before initiating a call.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...