Camera Preview from Blue Iris is not working!

I am trying to integrate a new Foscam camera into my home assistant using blue iris, but the camera preview is not working. I can browse fine to the url below and it prompts me for the username and password and once entered, I get the live feed of the camera. But for some reason after adding the camera to my configuration.yaml file, I cannot view the camera feed. I get a blank preview.

camera:
  - platform: mjpeg
    mjpeg_url: http://192.168.1.125:81/mjpg/Garage
    name: Garage
    username: !secret bi_user
    password: !secret bi_password
    authentication: basic

Make your mjpeg_url this:

mjpeg_url: "http://192.168.1.125:81/mjpg/Garage/video.mjpeg"

Include the " "

If you don’t have SSL, add this in, too:

verify_ssl: false

I have the same problem! the weird thing is it is working in the Home Assistant iPhone app but not in chrome or safari. Did you fix this?

It has been a while since I posted this. But for what it is worth, macloadit’s suggestion fixed my issues and here is my configuration code.

camera:
  - platform: mjpeg
    mjpeg_url: http://192.168.x.x:81/mjpg/garage/video.mjpeg
    name: garage
    username: *******    
    password: ********
    authentication: basic
    verify_ssl: false

Thanks for the reply but it still doesn’t work for me in Chrome or Safari but it does in the HA app. So weird… what could be different from the app loading the camera and a browser loading it?