Using special character "@" in password

Nikhil Pareek

New Member
I'm trying to use a password with @ into it in my rtsp link, not able to connect as I can see on server logs that URL is said to be invalid. is there any way that I can use @ in the password?

For example" rtsp:://username@oaass@123@someit:544:/someaddress
 

Max

Administrator
Staff member
Good day.
All the special characters in RTSP URL must be escaped (URI encoded). Also, username should be divided from password by :. For example, the correct URL is:
Code:
rtsp://username:oaass%40123@someit:544/someaddress
 
Top