Update README.md

This commit is contained in:
Strawmanbobi
2017-04-25 19:42:19 +08:00
committed by GitHub
parent 423981cc66
commit 5ffae188c7

View File

@@ -24,13 +24,13 @@ Sign in for access id and token:
int token = admin.getToken();
Fetch categories of household appliances:
Fetch household appliances categories:
   List<Category> categories = webApis.listCategories();
List<Category> categories = webApis.listCategories();
Fetch brands for an certain category (other than STB):
Fetch brands of a certain category other than STB:
   List&lt;Brand&gt; brands = webApis.listBrands();
List<Brand> brands = webApis.listBrands(category.getId());
Fetch cities (in China) for STB:
@@ -42,9 +42,9 @@ Fetch STB operators of a certain city:
List<StbOperator>; operators = webApis.listOperators(cityCode);
Fetch remote indexes of certain brand or STB operator:
Fetch remote indexes of a certain brand or STB operator:
   List&lt;RemoteIndex&gt; remoteIndexes = webApis.listRemoteIndexes(categoryID, brandID, cityCode, operatorID);
List<RemoteIndex> remoteIndexes = webApis.listRemoteIndexes(category.getId(), brand.getId(), city.getCode(), operator.getOperator_id());
Download IR binary for certain remote index: