Robert Veringa
Robert Veringa

Reputation: 540

Is It possible to start a Group FaceTime call with URL schemes (FaceTime Links)?

I know I can start a FaceTime call from within my iOS app with URL Schemes like this:

facetime://[email protected]

I was wondering if it is also possible to start a FaceTime call with multiple users. Tried to separate it with a , or ; but it didn't work.

More information on FaceTime links:

https://developer.apple.com/library/archive/featuredarticles/iPhoneURLScheme_Reference/FacetimeLinks/FacetimeLinks.html#//apple_ref/doc/uid/TP40007899-CH2-SW1

Upvotes: 3

Views: 1465

Answers (2)

user27387546
user27387546

Reputation: 1

using facetime-audio worked for me however the video will be off in the group call till participants turn them on.

facetime-audio:12345678901;[email protected]

Upvotes: 0

Robert Veringa
Robert Veringa

Reputation: 540

So I've been in contact with Apple and it turns out there is a URL scheme for group calls:

facetime-group://?remoteMembers=+12345678901;[email protected];+23456789012&isVideoEnabled=1 (make the last term 0 if you want to start with your camera off… works the same as tapping Audio when starting a Group FaceTime call)

Upvotes: 6

Related Questions