How to connect to API with windows authentification / NTLM / LDAP ?
Hello jmp users,
I try to connect to our internal services / api in JMP/JSL (JMP14) with HTTP request method
like
url = "http://192.168.1.1/api/getsomedata;
request = New HTTP Request(
URL( url ),
Method( "Post" ),
Form(
Fields([[
"maxLimit" => "100"
]])
)
);
json = request << Send();
jsl_json = Parse JSON( json );
...