I am looking for a way, that developers can access my portal and write their own slim script so I can evaluate on my server.
the most complicated thing this script has to do is HTTP POST requests and get their response (in JSON).
I was thinking about JS. something like that
function foo(arg0, arg1)
{
var res = doHTTP(arg0);
return res.replace("a", arg1);
}
My server is .NET but I am willing to write my server in any language/script.
Thanks!