import json
from notte_sdk import NotteClient
notte = NotteClient()
# load the cookies from json and inject them in the session
with open("cookies.json", "r") as f:
cookies = json.load(f)
with notte.Session() as session:
cookies = session.set_cookies(cookies){
"success": true,
"message": "<string>"
}import json
from notte_sdk import NotteClient
notte = NotteClient()
# load the cookies from json and inject them in the session
with open("cookies.json", "r") as f:
cookies = json.load(f)
with notte.Session() as session:
cookies = session.set_cookies(cookies){
"success": true,
"message": "<string>"
}The access token received from the authorization server in the OAuth 2.0 flow.
Show child attributes
Was this page helpful?
Suggestions