如何从 Java 中的 RESTFul 服务请求 GET to Ipstack API



我正在尝试使用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,并将其传递给地理位置 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 密钥。

相关内容

  • 没有找到相关文章

最新更新