从Device - android获取authorId

时间:2011-09-27 21:28:57

标签: android google-play

我正在使用Android Market API。 我用它来检索我的应用程序的所有评论: http://code.google.com/p/android-market-api/wiki/HowToGetAppComments

我的问题是如何知道当前用户的authorId是什么? 我只需要知道该用户是否已经写过评论。

谢谢!

1 个答案:

答案 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();