Reputation: 11
So there is a website using 3rd party API in Stripe. When someone purchase their service, the wommerce send order to the 3rd party along with payment by taking their share. How can I find that 3rd party site API on cart page using inspect element.
I'm unable to trace the APi
Upvotes: 1
Views: 125
Reputation: 2183
1) Open the DevTools (click Ctrl+Shift+I, OR Right Click
> Inspect
)
2) Go to the tab Network
3) Click on the black dot in the top left corner (it will become red) OR click Ctrl+E
Now you're ready to track/trace all the API calls that are done.
NB: Remember, this tab should be opened before the call is done
You can even filter the calls (if there's plenty of them) by typing any relevant keyword in the search bar
Upvotes: 0