我正在尝试使用API​​ IPStack通过IP获取用户的位置。此方法是原始方法的重载。这个想法是,如果用户接收到该位置,则转到另一个功能,如果没有找到,则转到该功能并获取它。也许我应该使用JQuery或PHP uCurl来编写https://ipstack.com/documentation文档的示例,但是我没有做任何事情如何从Eclipse与Java一起使用(这是必须的),因此我仍然像RESTful服务一样尝试它,但是什么也没有。

public Users newUser(String username, String email) {
    Client cliente = ClientBuilder.newClient();
    WebTarget servicio = cliente.target(MONGODB + MONGOCOLL + "?apiKey=" + MONGOKEY);

    try {
        JSONObject user = new JSONObject();
        JSONObject location = new JSONObject();
        user.put("username", username);
        user.put("email", email);

        ArrayList<String> following = new ArrayList<String>();
        user.put("following", following);
        ArrayList<String> friends = new ArrayList<String>();
        user.put("friends", friends);

        String ipstackfields = "&output=json&fields=country_name,city,zip";
        Client clientipstack = ClientBuilder.newClient();
        WebTarget ipstackserv = clientipstack
                .target(IPSTACK + IPSTACKEND + "?apiKey=" + IPSTACKKEY + ipstackfields);
        Response resplocated = ipstackserv.request().get();
        String slocate = resplocated.readEntity(String.class);
        JSONObject located = new JSONObject(slocate);

        location.put("country", located.get("country_name"));
        location.put("city", located.get("city"));
        location.put("postcode", located.get("zip"));
        user.put("location", location);

        Response respuesta = servicio.request().post(Entity.json(user.toString()));

        if (respuesta.getStatus() == Status.OK.getStatusCode()) {
            // TODO: leer la respuesta de la llamada y trasformar el objeto
            // JSON a un mensaje para devolverlo
            String s = respuesta.readEntity(String.class);
            JSONObject usuario = new JSONObject(s);
            return JSONtoUser(usuario);
        } else {
            return null;
        }
    } catch (Exception e) {
        return null;
    }
}

最佳答案

您的代码似乎在服务器端执行。调用方法newUser时,您需要从请求标头中检索客户端IP,并将其传递给Geolocation API。

要查找的请求标头取决于您的服务器和配置,但通常称为Client-IPX-Forwarded-For

拥有客户端IP后,需要在使用Ipstack查询参数之前将其附加。

仅供参考,我建议您寻找Ipregistry,以获得比Ipstack更快,更可靠的解决方案(免责声明:我运行该服务)。以下是通过Ipregistry传递您的信息的方法:

https://api.ipregistry.co/54.85.132.205?key=tryout

其中54.85.132.205tryout必须分别用客户端IP和API密钥替换。

07-26 00:05