Ejemplo n.º 1
0
  /**
   * This method is used to retrieve all of the basic person information.
   *
   * <p>It will return the single highest rated profile image.
   *
   * @param personId
   */
  public PersonPeople getPersonInfo(int personId, String... appendToResponse) {
    ApiUrl apiUrl = new ApiUrl(TMDB_METHOD_PERSON, personId);

    apiUrl.appendToResponse(appendToResponse);

    return mapJsonResult(apiUrl, PersonPeople.class);
  }