Hello,
New Channels user here (trying to replace Plex).
Currently I have Channels installed on my seedbox using these commands:
cd; curl -fs https://getchannels.com/dvr/setup.sh | DOWNLOAD_ONLY=1 sh
mkdir -p $HOME/.config/systemd/user
cat > $HOME/.config/systemd/user/channels-dvr.service << EOF
[Unit]
Description=Channels DVR
Wants=network-online.target
After=network-online.target
[Service]
Type=simple
WorkingDirectory=$HOME/channels-dvr
StandardOutput=append:$HOME/channels-dvr/data/channels-dvr.log
StandardError=inherit
ExecStart=$HOME/channels-dvr/latest/channels-dvr
Restart=always
RestartSec=10
LimitNOFILE=8192
OOMScoreAdjust=-500
[Install]
WantedBy=default.target
EOF
systemctl --user daemon-reload
systemctl --user enable --now channels-dvr
Upon install I can reach the initial setup screen using either of the below links:
IPADDRESS:8089/auth/logout
But when I click the button to "Set Up New DVR" and proceed to login, I only reach a white screen with an error "The redirect uri included is not valid."
Screenshot below:
It seems to be taking me to this URL (replaced IP for security)
https://community.getchannels.com/oauth/authorize?access_type=offline&client_id=5a1ee61b287980862dce7863438b1e1e22186342f6fc1f95c1e8daa8cec8d5f9&redirect_uri=http%3A%2F%2FIP.IP.IP.IP%3A8089%2Fauth%2Fconfirm&response_type=code
Is there anything I can get this running / authenticated to login?
Many thanks
osk3


