Julia中的函数参数语法

时间:2018-06-12 06:14:27

标签: http-headers httprequest julia

HTTP.jl库为函数class TestController{ ABCDCode abcdCode def index(int id){ abcdCode.getData(id) //Here I am getting NullPOinterException } } 提供以下签名HTTP.request

我不确定这种语法是什么意思HTTP.request(method, url [, headers [, body]]; <keyword arguments>])

特别是,我要做的是发出一个GET请求:url [, headers [, body]]所以我打电话给:https://example.org/api?api_key=my_api_key

现在如何在标题中指定我的HTTP.request("GET", "https://example.org/api")

1 个答案:

答案 0 :(得分:1)

你会这样做:

julia HTTP.request("GET", "https://example.org/api"; query = Dict(:api_key => "my_api_key"))