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.

2
  • Possible duplicate: stackoverflow.com/questions/2607067/…
    – Durdu
    Commented Feb 21, 2018 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
    Commented Feb 21, 2018 at 13:06

1 Answer 1

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>
1
  • How do we get an image back from this though...
    – Qasim
    Commented Mar 2, 2023 at 7:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.