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!"
}