Avatar

Community Advisor

Good question. You can diy with the libcurl wrapper in the jsapi:

 

<%
var hcr = new HttpClientRequest('https://marketing.adobe.com');
hcr.url = 'https://www.google.com/' + targetData.variables;
hcr.execute();
%><%= hcr.response.body.toString(hcr.response.codePage) %>

 

Note the constructor arg here is 'https://marketing.adobe.com'.
This is to mitigate a broken feature that was recently added to the already buggy implementation, 'urlPermission'.