API calls and Testing
After some more work, I have results! You should be able to check now at the bottom of my page for a little Visitor Counter! I added in JavaScript to my page like so: <script> const API_URL = “https://******.execute-api.us-east-1.amazonaws.com/default/visitorcount”; async function fetchAndShowCount() { try { const res = await fetch(API_URL, { method: “POST” }); if…