0

How can I open the apple's app Camera from a link in safari ?

Something like :

<a href='apple:camera'>Open camera APP</a>

it's about using the qrcode.

Zabz
  • 59
  • 9
  • Possible duplicate: https://stackoverflow.com/questions/2607067/can-you-access-the-iphone-camera-from-mobile-safari – Durdu Feb 21 '18 at 13:03
  • No its not. I am asking about opening app, not using it. I dont want to take a picture and use it in the file upload. Please dont lose your time answering things like that. – Zabz Feb 21 '18 at 13:06

1 Answers1

0

I am not sure if you can achieve this. Check this link

Nonetheless, can you you try the following solution (I think it opens the gallery not photo app)?

<script type="text/javascript" charset="utf-8"> 
window.location = "photos-redirect://";
</script>

or

<script type="text/javascript" charset="utf-8"> 
window.location = "photos://";
</script>
Durdu
  • 4,649
  • 2
  • 27
  • 47