gpt4 book ai didi

java - 改造以使用参数获取请求

转载 作者:行者123 更新时间:2023-12-02 09:30:03 25 4
gpt4 key购买 nike

我想通过 url 使用参数进行改造。

Base Url = .../.../...?t=id

“t”是我的参数。

输出json数据如下:

{
"id":"1",
"names":[
"xxxxxx",
"yyyyyy"
]

}

我该怎么做?你能帮我一下吗?

最佳答案

您应该声明接口(interface)

public interface RestInterface {

@GET("/fixed_url/{path_param1}_{path_param2}?")
Result doGetRequest(@Path("path_param1") String from,
@Path("path_param2") String to,
@Query("get_param1") String getParam1,
@Query("get_param2") String getParam2);
}

构建改造对象实例

Retrofit rtft = Retrofit.Builder()
.baseUrl("http://your_server_url:port")
.build();

之后您可以获取接口(interface)实例并进行 HTTP REST 调用

rtft.create(RestInterface.class).doGetSuggestions(....);

关于java - 改造以使用参数获取请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58065520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com