0

我正在尝试找到一种方法,可以从一个人的 kik 用户名中获取图像的 URL。该用户将提供他们的用户名。我想在 iPhone 上运行它,所以最好是安静的请求。但是我还没有看到任何用于kik 的宁静API。

4

2 回答 2

2

由于接受的答案没有过时,您可以使用获取个人资料图片 URL

https://ws2.kik.com/user/USERNAME

例如https://ws2.kik.com/user/KikTeam

这将返回一个 JSON 响应

{"firstName":"Kik","lastName":"Team","displayPicLastModified":1531418402837,"displayPic":"http:\/\/profilepics.cf.kik.com\/9wG3zRZW8sLxLnpmyOfwNE7ChYk\/orig.jpg"}

displayPic是个人资料图片的 URL。这是我编写的用于解析响应的 Java 方法。

public static void getInformation(String username){
    String API = "https://ws2.kik.com/user/";

    try (BufferedReader reader = new BufferedReader(new InputStreamReader(new URL(API + username).openConnection().getInputStream(), StandardCharsets.UTF_8))) {
        String response = reader.lines().collect(Collectors.joining("\n"));
        JSONObject jsonObject = new JSONObject(response);
        String firstName = jsonObject.getString("firstName");
        String lastName = jsonObject.getString("lastName");
        long displayPicLastModified = jsonObject.getLong("displayPicLastModified");
        String displayPic = jsonObject.getString("displayPic");
        System.out.printf("firstName: %s, lastName: %s, displayPicLastModified: %d, displayPic: %s\n",
                firstName, lastName, displayPicLastModified, displayPic);
    } catch (IOException | JSONException e) {
        e.printStackTrace();
    }
}

现在让我们通过使用来调用它

getInformation("KikTeam");
于 2018-12-12T03:10:34.270 回答
1

希望对你有帮助......

http://cdn.kik.com/user/pic/[USERNAME]

例如http://cdn.kik.com/user/pic/teamkik

于 2015-04-01T10:18:48.767 回答