Fixes issue #134 - Delete/Add an account in a list

This commit is contained in:
stom79 2017-12-13 16:22:06 +01:00
parent c57c394557
commit 541177a438
1 changed files with 45 additions and 1 deletions

View File

@ -1177,7 +1177,7 @@ public class API {
/**
* Get accounts in a list for a user
* Get accounts in a list for a user
* @param listId String, id of the list
* @param limit int, limit of results
* @return APIResponse
@ -1231,6 +1231,50 @@ public class API {
return apiResponse;
}
/**
* Add an account in a list
* @param id String, id of the list
* @param account_ids String, account to add
* @return APIResponse
*/
//TODO: it is unclear what is returned here
//TODO: improves doc https://github.com/tootsuite/documentation/blob/4bb149c73f40fa58fd7265a336703dd2d83efb1c/Using-the-API/API.md#addingremoving-accounts-tofrom-a-list
public APIResponse addAccountToList(String id, String account_ids){
HashMap<String, String> params = new HashMap<>();
params.put("account_ids",account_ids);
List<fr.gouv.etalab.mastodon.client.Entities.List> lists = new ArrayList<>();
fr.gouv.etalab.mastodon.client.Entities.List list;
try {
new HttpsConnection().post(getAbsoluteUrl(String.format("/lists/%s/accounts", id)), 60, params, prefKeyOauthTokenT);
} catch (HttpsConnection.HttpsConnectionException e) {
setError(e.getStatusCode(), e);
}catch (Exception e) {
setDefaultError();
}
return apiResponse;
}
/**
* Delete an account from a list
* @param id String, the id of the list
* @return APIResponse
*/
public int deleteAccountFromList(String id, String account_ids){
try {
HttpsConnection httpsConnection = new HttpsConnection();
httpsConnection.delete(getAbsoluteUrl(String.format("/lists/%s/accounts", id)), 60, null, prefKeyOauthTokenT);
actionCode = httpsConnection.getActionCode();
} catch (HttpsConnection.HttpsConnectionException e) {
setError(e.getStatusCode(), e);
}catch (Exception e) {
setDefaultError();
}
return actionCode;
}
/**
* Posts a list
* @param title String, the title of the list