我正在使用Android Market API。 我用它来检索我的应用程序的所有评论: http://code.google.com/p/android-market-api/wiki/HowToGetAppComments
我的问题是如何知道当前用户的authorId是什么? 我只需要知道该用户是否已经写过评论。
谢谢!
答案 0 :(得分:1)
您发布的链接上的示例代码显示了这一点:
public void onResult(ResponseContext context, CommentsResponse response)
{
System.out.println("Response : " + response);
// response.getComments(0).getAuthorName()
// response.getComments(0).getCreationTime()
// ...
}
根据source code,要获得第一条评论的authorID
,您应该可以使用
String id = response.getComments(0).getAuthorID();