我正在使用Google自动完成网络服务。我想打电话给
但是 strictbounds 参数没有参数名称。我已经创建了改装请求,但无法添加strictbounds参数
@GET("maps/api/place/autocomplete/json")
Call<PlaceSearchResult> searchPlaceByName(@Query("input") String input, @Query("location") String location
, @Query("radius") String radius, @Query("key") String key);
如何添加不带键的参数?
答案 0 :(得分:1)
像这样更改它:
@GET("maps/api/place/autocomplete/json?strictbounds")
Call<PlaceSearchResult> searchPlaceByName(@Query("input") String input, @Query("location") String location
, @Query("radius") String radius, @Query("key") String key);