How to Retrieve Public Event Data via JavaScript Without User Authentication?
I’m building a custom events display for our tennis organization’s website using Wild Apricot. I’d like to use JavaScript to fetch upcoming events and format them myself, since the built-in events gadget is extremely terrible in customization and flexibility.
I understand that Wild Apricot allows for AJAX requests from the client if the user is logged in. However, this breaks for public users since it requires authentication.
What I’m trying to achieve:
• Retrieve public event data using JavaScript without requiring the visitor to log in.
• Format and display the events in a custom layout that better fits our site’s design.
Is there an officially supported way to make unauthenticated client-side requests for public event data? Or perhaps a recommended workaround (e.g. an RSS feed or a server-side proxy) that avoids forcing login?
Any guidance or examples would be appreciated!
