发布日期: 11/15/2021

HTTP Requests in JMP Live

To invoke HTTP methods in JMP Live, use Get HTTP Request():

lc = New JMP Live(Connection("JMP Live Connection"), Prompt(If Needed));
hrequest = lc << Get HTTP Request();
hrequest << URL(url);
hrequest << Method("GET");
data = hrequest << Send();
json_data = Parse JSON(data);
show(json_data);

For more details, see Communicate with REST Web Service.

需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).