Skip to content

Commit c3603cb

Browse files
authored
Fix wrong cookie store example domain (#21)
1 parent cb6bf2f commit c3603cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/examples-source/cookies_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
except vrchatapi.ApiException as e:
2828
print("Exception when calling API: %s\n", e)
2929

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

0 commit comments

Comments
 (0)