diff --git a/README.md b/README.md index b5d511e..424f813 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ client_secret = 'PLACE YOUR CLIENT SECRET' auth_url = ToDoConnection.get_auth_url(client_id) redirect_resp = input(f'Go here and authorize:\n{auth_url}\n\nPaste the full redirect URL below:\n') token = ToDoConnection.get_token(client_id, client_secret, redirect_resp) # you have to save it somewhere +print(token) todo_client = ToDoConnection(client_id=client_id, client_secret=client_secret, token=token) lists = todo_client.get_lists()