I'm trying to write a bash script that can book a seat at my local library through the Affluences app. Unfortunately, I can't find any API documentation online. My plan is to use cURL to send a request to the app's server. Does anyone have advice or suggestions on how to proceed?
1 Answer
You might want to use Burp Suite to analyze the traffic. It has a browser built-in that allows you to capture requests easily. You can even copy requests as cURL commands right from the interface, which will make it simpler to use in bash. It's a great tool if you're looking to dive deeper into automation!
Do I need to set up a proxy with Burp to catch and analyze the POST requests?