ics data to xano

Options
are there any ways we can add ics file content to xano database?

Comments

  • Ray Deck
    Ray Deck Trusted Xano Expert ✭✭✭
    Options
    You can always read the file and write the text to the database. It's small enough and text-y so that would work out of the box. 

    If you want to understand what it is (for example, pulling the start time of an appointment in order to store it in a field) you will need to take some additional steps. After loading the content into memory as a string you can parse it logically line by line. Xano doesn't know about the iCal intrinsically, so you would bring your understanding of it to the parsing process either in the no-code stack or using a lambda. Not simple, but you could do it!