Forum
/
Help
/
Is there a way to escape the equals character in a micron in a request link with pre-set variables
Is there a way to escape the equals character in a micron in a request link with pre-set variables
Help
Started by welo ·
Youtube links have an equals character inside of them. Putting them as put of a field and collecting the url is fine but then putting that url as a link breaks a link request like "url=https://www.youtube.com/watch?v=jNQXAC9IVRw" into "url=https://www.youtube.com/watch?v" with the video id tag thingy being cut off. I attempted to escape the equal with a backslash but same problem occurs.
Mark
bc7291552be7a58f...
Have you tried url-encoding it? urllib.parse.quote_plus
Mark wrote:
Have you tried url-encoding it?
urllib.parse.quote_plus
Yea this would probably do the trick. It's also what roogle and meshlink uses too 