3

Pinterest を Android アプリに統合するために REST API を使用していますが、カテゴリにアクセスしようとするとエラーが発生します。

私のコード:

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 に答える