Anyone that can assist me in troubleshooting this JSON reader error?

Also was having an issue with google drive json file being read correctly if you have any experience with that I seem to be missing something? I am trying to transfer my data from google maps so that I can post it to Instagram and I started doing the process manually put got approximately 1% of the through before I realized it would take forever and I was hoping I could automate at least some of the parts to make it somewhat faster. Any/all help is much appreciated.

https://www.gumloop.com/pipeline?workbook_id=vkVH76Pq8T5EZcfW6C1jTc&run_id=NrAdPQGSSvZSaSUrWguaXg

Hey @Umami.Haven! If you’re reporting an issue with a flow or an error in a run, please include the run link and make sure it’s shareable so we can take a look.

  1. Find your run link on the history page. Format: https://www.gumloop.com/pipeline?run_id={{your_run_id}}&workbook_id={{workbook_id}}

  2. Make it shareable by clicking “Share” → ‘Anyone with the link can view’ in the top-left corner of the flow screen.
    GIF guide

  3. Provide details about the issue—more context helps us troubleshoot faster.

You can find your run history here: https://www.gumloop.com/history

Hey @Umami.Haven – To extract “date”, “five_star_published_rating” (which is actually “five_star_rating_published” in your data), and “google_maps_url” from your JSON, you’d have to use dot notation to access these properties within the nested structure.

Examples:

For the “date” field:
features.0.properties.date

For the “google_maps_url” field:
features.0.properties.google_maps_url

If you want to extract all the items from each nested array, it might be easier to create a custom node. You can check out the documentation here and there’s also a video tutorial as well as a Custom Node Workshop.

Let me know if that works for you.

1 Like

Thanks Wasay- I will have to check this out tomorrow, heading to bed now! I am almost there, but now the data exported is not useable (seems like it is being exported in a json code still?)

1 Like

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.