如何不使用键名进行改造查询参数请求

时间:2018-12-27 13:41:21

标签: android retrofit2

我正在使用Google自动完成网络服务。我想打电话给

  

https://maps.googleapis.com/maps/api/place/autocomplete/xml?input=Amoeba&types=establishment&location=37.76999,-122.44696&radius=500&strictbounds&key=YOUR_API_KEY

但是 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);

如何添加不带键的参数?

1 个答案:

答案 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);