RM Changes String Value

I have a String variable cmd = VideoInMode[0].Config[0]
When I use it in a Send Get such as 192.168.1.66/cgi-bin/configManager.cgi?action=setConfig&%cmd%=%dahuaProfile% it results into 192.168.1.66/cgi-bin/configManager.cgi?action=setConfig&VideoInMode0.Config0=0
It appears it does not like the [0] combination. How do I get around this??

You could try url encoding of the original string.

1 Like

Yup, that worked :smiley:

cmd =VideoInMode%5B0%5D.Config%5B0%5D

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.