3

我正在使用 REST API 将 Pinterest 集成到我的 Android 应用程序中,但在尝试访问类别时出现错误。

我的代码:

String url = "https://api.pinterest.com/";
String allCategories = "/v2/boards/categories/";
RestClient client = new RestClient(url + allCategories);
String response = "";

    try {
        client.AddParam("limit", "36");

        try {
            client.Execute(RequestMethod.GET);
        } catch (Exception e) {
            e.printStackTrace();
        }
        response = client.getResponse();
    } catch (Exception e) {
        System.out.println(">>> Exception >>> " + e + " >>> Message >>> "
                + e.getMessage());
    }
    System.out.println(">>> response >>> " + response);
    Log.d(">> Login response >>> ", response);

我从端点返回以下错误:

{
    "message": "Please upgrade your app!", 
    "error": "Authentication failed: Please upgrade your app!"
}
4

2 回答 2

0

Pinterest没有任何官方api,而且它的非官方api现在不起作用。所以我认为你的代码不会以任何方式工作,除非有人发现任何其他非官方 api 或 Pinterest 发布官方版本。

PS:更多信息

于 2013-03-14T12:01:14.413 回答
-1

截至今天,pinterest API 已下架(看这里

与此同时,您可能想要使用这个由第三方实现的爬虫,它的工作原理就像一个 API

http://pinterestapi.co.uk/

您可以使用它来获取用户的看板、点赞和别针。

注意:奇怪的是 v1 api 的计数仍然有效。但这又是无证行为,不要依赖于此

于 2013-03-13T09:19:50.953 回答