Skip to content

Commit

Permalink
Fix wrong cookie store example domain (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
jellejurre authored Jan 18, 2025
1 parent cb6bf2f commit c3603cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/examples-source/cookies_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
except vrchatapi.ApiException as e:
print("Exception when calling API: %s\n", e)

cookie_jar = api_client.rest_client.cookie_jar._cookies["vrchat.com"]["/"]
cookie_jar = api_client.rest_client.cookie_jar._cookies["api.vrchat.cloud"]["/"]
print("Logged in as:", current_user.display_name)
print("auth: " + cookie_jar["auth"].value)
print("twoFactorAuth: " + cookie_jar["twoFactorAuth"].value)

0 comments on commit c3603cb

Please sign in to comment.