Is your feature request related to a problem? Please describe.
During high population releases, Shopify Engineering activates certain bot protection measures to counteract any bots ability to automatically checkout via their API. This proves hard for most bots, and due to this, none have successfully been able to checkout in a few months.
Describe the solution you'd like
I've been digging and collecting network request logs for awhile now and finally found the missing piece of the puzzle. During the 3 checkout steps, a random number of hashes get generated and stuck in the body of the request. Here's an example found in the body of the contact_information step:
Like I said, these are unique to the checkout session and unique to the step they are found on. These will need to be parsed and included in the request body fields in order to not receive a 429 error on payment.
Describe alternatives you've considered
Zero alternatives in this situation. API endpoints are pretty much impossible while bot protection is up and active.
Additional context
None right now. But I will add any as I stumble on it.
Is your feature request related to a problem? Please describe. During high population releases, Shopify Engineering activates certain bot protection measures to counteract any bots ability to automatically checkout via their API. This proves hard for most bots, and due to this, none have successfully been able to checkout in a few months.
Describe the solution you'd like I've been digging and collecting network request logs for awhile now and finally found the missing piece of the puzzle. During the 3 checkout steps, a random number of hashes get generated and stuck in the body of the request. Here's an example found in the body of the contact_information step:
For this example: it would be whatever the body is and
Like I said, these are unique to the checkout session and unique to the step they are found on. These will need to be parsed and included in the request body fields in order to not receive a 429 error on payment.
Describe alternatives you've considered Zero alternatives in this situation. API endpoints are pretty much impossible while bot protection is up and active.
Additional context None right now. But I will add any as I stumble on it.