java-asana icon indicating copy to clipboard operation
java-asana copied to clipboard

Official Java client library for the Asana API v1

Results 41 java-asana issues
Sort by recently updated
recently updated
newest added

The exception started to throw at September, 30 on production that uses API KEY. Until that it worked properly. Neither API KEY (that is going to be deprecated, as far...

Please add a way to find team by user to TeamsBase class. This would be a GET request to "/users/{user-id}/teams" endpoint. ┆Issue is synchronized with this [Asana task](https://app.asana.com/0/182694757934856/182694707623385)

I have the following code. All work's fine: ``` Task task= client.tasks.createInWorkspace(workspaceId) .data("name", "TEST") .data("assignee", userID) .execute(); client.tasks.addProject(task.id) .data("project", projectID) .data("section", sectionID) .execute(); ``` Now I try to create a...

Using the data-method providing names as strings may lead to typo-problems and errors that can be hard to find. So we built a TaskDataBuilder where you can set properties via...

I sporadically, see the following Error, though I am using the same credentials all the time: Caused by: com.asana.errors.NoAuthorizationError: NoAuthorizationError at com.asana.errors.AsanaError.mapException(AsanaError.java:30) at com.asana.Client.request(Client.java:167) at com.asana.requests.ItemRequest.executeRaw(ItemRequest.java:38) at com.asana.requests.ItemRequest.execute(ItemRequest.java:27) Happened, e.g....

I guess that this is an issue of the API in general, but since I am seeing this behavior using the Java client libraries I am posting this here. I...

┆Issue is synchronized with this [Asana task](https://app.asana.com/0/182694757934856/265961944245007)

Project model is missing the privacy_setting field which is present in the [API](https://developers.asana.com/reference/getproject#:~:text=use%20privacy_setting%20instead.-,privacy_setting,-string).

The attribute `start_at` is also present in `Task` and `start_on` similar to `due_on` and `due_at`. Also, need to add `permalink_url`.

In `https://app.asana.com/api/1.0/projects/{project_gid}/tasks` and some other URLs. The query param "modified_since" works, but the docs only show "completed_since". All the expected parameters are supported, but one should not need to experiment...