5

I am developing an application having FaceTime feature. How do I know when both are connected/disconnected using FaceTime? I need to restrict the call duration and also I don't want to show others FaceTime ID when it is getting connected because of security reasons. Is there any delegate to know those details? Could anyone give some idea to get it?

James Webster
  • 31,873
  • 11
  • 70
  • 114
Srinivas G
  • 339
  • 3
  • 16

1 Answers1

10

There is no FaceTime api in the offical API.

You can use the the facetime url scheme:

facetime://

rckoenes
  • 69,092
  • 8
  • 134
  • 166
  • 1
    Thanks for the response,I agree with you. Is there any alternative to get the video call instead of facetime like thrid party sdks, since facetime doesnot have an API. – Srinivas G May 03 '11 at 06:47
  • No there isn't any available API for facetime in iOS 5 SDk – rckoenes Nov 24 '11 at 15:44
  • Can you call specific users with the url scheme? – quantumpotato Sep 20 '13 at 03:03
  • The FaceTime URL scheme is also undocumented and therefore considered private by Apple. Your app will be rejected when using the FaceTime URL scheme. – pre Oct 08 '13 at 10:44
  • 3
    @pre It is not the case as of now.https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/FacetimeLinks/FacetimeLinks.html – Akshit Zaveri Jan 16 '18 at 10:42