gpt4 book ai didi

android - 当 URL 中有 "?"时,改造 POST 请求转换为 GET 请求

转载 作者:行者123 更新时间:2023-11-30 00:03:23 25 4
gpt4 key购买 nike

当URL是这样的时候,Retrofit将GET请求中的POST转换

https://www.example.com/index.php?route=api/account/login

最佳答案

Found the solution
@FormUrlEncoded
@POST("index.php")
Call<String> login(@QueryMap(encoded=true) Map<String, String> options,@Field("email") String username,@Field("password") String password);

and calling will be like this
Map<String, String> map = new HashMap<>();
map.put("route","restapi/account/login");
Call<String> call = mAPIService.login(map, email, password);

关于android - 当 URL 中有 "?"时,改造 POST 请求转换为 GET 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49469413/

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