wimpie3 Well-Known Member Licensed User Longtime User Nov 7, 2013 #1 A quick question. It seems you have to escape strings when you post them with HTTPJob.PostString. 1. Is this correct? 2. Why isn't escaping done by default in HTTPJob? 3. Is there a library/function available to do the escaping? Thanks. Wim
A quick question. It seems you have to escape strings when you post them with HTTPJob.PostString. 1. Is this correct? 2. Why isn't escaping done by default in HTTPJob? 3. Is there a library/function available to do the escaping? Thanks. Wim
Erel B4X founder Staff member Licensed User Longtime User Nov 8, 2013 #2 1. No. 2. See above. 3. You can use StringUtils.EncodeUrl. This is done automatically with Job.Download2 (GET request). Upvote 0
1. No. 2. See above. 3. You can use StringUtils.EncodeUrl. This is done automatically with Job.Download2 (GET request).