You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using OAuth2, I don't want to create a new access token for every every request - because an access token has several hours of lifetime so I want to reuse/share it until it expires.
Is it possible to extract/save response data (the access token) to the env file so I don't have manually:
Find it in the response
Copy it
Open the env file
Paste it
The text was updated successfully, but these errors were encountered:
Also, how do I specify a "common" part to be applied to each request in a .pyr file without specifying it in each request?
For example, I'd like to add the Authorization header to each request. But I don't want to repeat it in each request.
Using OAuth2, I don't want to create a new access token for every every request - because an access token has several hours of lifetime so I want to reuse/share it until it expires.
Is it possible to extract/save response data (the access token) to the env file so I don't have manually:
The text was updated successfully, but these errors were encountered: