如何在Android应用中正确集成Pinterest?

时间:2012-12-26 13:53:56

标签: android pinterest

我正在使用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!"
}

2 个答案:

答案 0 :(得分:0)

Pinterest没有任何官方api,而且非正式的api是not working now。因此,我不认为您的代码会以任何方式工作,除非有人发现任何其他非官方API或Pinterest发布正式版本。

PS:More Info

答案 1 :(得分:-1)

截至今天,pinterest API已被取消 (看here

与此同时,您可能希望使用第三方实施的刮刀,它就像API一样工作

http://pinterestapi.co.uk/

您可以使用它来获取用户的板,喜欢和引脚。

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