Hey!
I have an API set up that uses a link token → public token → account token
Step 1) capture link token through the API connector, store link token in db
Step 2) use a js script to pass in my link token to get public token
Step 3) use chrome web tools to find the public token in the network tab
Step 4) pass public token for account token
Very easy to set up, but the issue is that in order to get the account token, I have to consult the chrome web tools, inspect the network events, find the right file, open that up, trudge through nested responses to ultimately find my public token.
Very cool - except I want to automate this, obviously.
What is the best way to capture a response handler/response info from the network tab?
Thanks!