我的网址有什么问题(google place api和retrofit)

时间:2016-03-23 20:46:16

标签: android google-places-api retrofit

  

https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=45.537284299999996,-73.576391125&radius=1000&types=amusement_park|restaurant|cafe|restaurant|library&rankby=distance&key=apikey

我正在使用改装。这是我的代码: 改造api接口:

<html>
    <head>
    </head>
    <body>
        <div id="head">
            foo
        </div>
        <div id="container">
            <div id="left">
                bar
            </div>
            <div id="right">
                baz
            </div>
        </div>
    </body>
</html>

}

然后我如何设置我的值

ublic interface PlaceApiRequestInterface {

@GET("/maps/api/place/nearbysearch/json")

//synch request: all wait on the same thread
public Response getJson(@Query("location") String location,
                        @Query("radius") String radius,
                        @Query("rankby") String rankby,
                        @Query("types") String types,
                        @Query("key") String key);

我得到了这个答案:

  

{      “html_attributions”:[],      “结果”:[],      “status”:“INVALID_REQUEST”   }   块引用

可以帮我发现这里有什么问题吗? 感谢。

0 个答案:

没有答案