# Extract EXIF information from your images in Glide

**URL:** https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722
**Category:** Community Resources
**Created:** [August 20, 2021, 2:48pm UTC](https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722 "2021-08-20T14:48:27Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![PabloMFalero](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/pablomfalero/32/31166_2.png) [@PabloMFalero](https://community.glideapps.com/u/PabloMFalero)
#### Post date: [August 20, 2021, 2:48pm UTC](https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722/1 "2021-08-20T14:48:28Z")

</div>

So the other day I raised a question in the community on how to extract the EXIF information from an image, I finally managed to do it with help of culinary and a little bit of code. We’ll need a webhook and then a few bits of code that I’ll paste below.  
Hope it all helps:

[https://www.loom.com/share/e5310c5799564de68a0c6953a1f5e0c4](https://www.loom.com/share/e5310c5799564de68a0c6953a1f5e0c4)

You can find all the information here: [Admin API Reference | Cloudinary](https://cloudinary.com/documentation/admin_api)

Here’s the cUrl code that you have to paste in your HTTP module, in the URL section:

```auto
https://<API_KEY>:<API_SECRET>@api.cloudinary.com/v1_1/<cloud_name>/resources/image/upload/your_image_link_from_glide

```

Sample Response:

```auto
{
  "resources": [
    {
      "asset_id": "b1ce1d159bc3696e5a74d8b8aefbe707",
      "public_id": "face_center",
      "format": "jpg",
      "version": 1333013579,
      "resource_type": "image",
      "type": "upload",
      "created_at": "2012-03-29T09:32:59Z",
      "bytes": 128891,
      "width": 283,
      "height": 424,
      "backup": true,
      "access_mode": "public",
      "url": "http://res.cloudinary.com/demo/image/upload/v1333013579/face_center.jpg",
      "secure_url": "https://.../image/upload/v1333013579/face_center.jpg"
    },
    {
      "asset_id": "835d1cf89bd7c1b84dc4f53d35bc235f",
      "public_id": "12208495",
      "format": "jpg",
      "resource_type": "image",
      "type": "facebook",
      "created_at": "2012-10-06T17:18:52Z",
      "bytes": 0,
      "access_mode": "public",
      "url": "http://res.cloudinary.com/demo/image/facebook/12208495.jpg",
      "secure_url": "https://.../image/facebook/12208495.jpg"
    },

```

And obviously thanks to @Mark_Turrell for pushing me to my limits of knowledge 🙂 🙂

---

<div class="post-metadata">

### Author: ![Mark\_Turrell](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/mark_turrell/32/26605_2.png) [@Mark\_Turrell](https://community.glideapps.com/u/Mark_Turrell)
#### Post date: [August 20, 2021, 3:18pm UTC](https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722/2 "2021-08-20T15:18:31Z")

</div>

Very cool 😇🌟🌟😃

---

<div class="post-metadata">

### Author: ![Krivo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/krivo/32/5363_2.png) [@Krivo](https://community.glideapps.com/u/Krivo)
#### Post date: [August 20, 2021, 5:05pm UTC](https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722/3 "2021-08-20T17:05:09Z")

</div>

@PabloMFalero seems as you exposed the cloudinary keys in the video - which might not be a problem for you. Just for info

---

<div class="post-metadata">

### Author: ![PabloMFalero](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/pablomfalero/32/31166_2.png) [@PabloMFalero](https://community.glideapps.com/u/PabloMFalero)
#### Post date: [August 20, 2021, 5:08pm UTC](https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722/4 "2021-08-20T17:08:32Z")

</div>

is a test account, but I can remake the video, thanks Kirvo 🙂

---

<div class="post-metadata">

### Author: ![Krivo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/krivo/32/5363_2.png) [@Krivo](https://community.glideapps.com/u/Krivo)
#### Post date: [August 20, 2021, 5:12pm UTC](https://community.glideapps.com/t/extract-exif-information-from-your-images-in-glide/30722/5 "2021-08-20T17:12:54Z")

</div>

@PabloMFalero don’t do it for my sake😜 Just wanted to let you know. For a production solution you might consider whether the cloudinary keys can be found by inspection.  
Seems to be a bit of a problem when using external apis.
