-
Notifications
You must be signed in to change notification settings - Fork 272
Double password prompt when playing live event URL #1131
Description
If a live event URL is passed to the Video.Player constructor, and the event is password-protected, the user is prompted twice for a password.
(This is related to case #28242777.)
Here is the live event URL in question, it belongs to my trial Advanced-tier account; you may need to replace it with your own if/when my trial expires on 11/25/25:
Example live event URL: https://vimeo.com/event/5529829
Password: ilovesmores
Codepen link, with that live event URL hard-coded, where I was able to reproduce as of today (11/20/25, 5pm ET):
https://codepen.io/Daniel-Frampton/pen/zxqEKgG
Note: if I open that Codepen, or our own application, in the same browser in which I am logged in to the Vimeo account that owns the live event, I don't see any password prompts. To reproduce the prompts, I needed to view the Codepen or our application in a different browser or incognito tab.
Browser: Chrome
OS: MacOS
What we're experiencing:
- Admin user creates a Vimeo live event that is password-protected,
- They provide us with the live event URL, which we store.
- User loads our page
- (In our code, we pass the live event URL in as the
urloption to the player constructor.) - Player SDK loads
- Player shows "Enter password to watch" prompt, with "Enter password" placeholder text and a "Submit" button (horizontally aligned, black input, black button).
- User enters password and submits it, player briefly shows loading spinner.
- Player shows another password prompt, this time with heading "Password required" and text "If you have access, enter the password to watch", with another text input with "Enter password" placeholder text and "Submit" (vertically aligned, white text input, blue button).
- User enters password again, and the player shows the live event.
Browser console logs (Chrome) when the issue occurs in our own application code.
If I use a video URL, where the video is password-protected, instead of an event URL, the user is only prompted once (with the 2nd prompt). So this appears to be limited to event URLs.
Ideal behavior: the user is only prompted for the password once, instead of twice.
Any help is appreciated. Let me know what additional info I can provide.

