Git Product home page Git Product logo

Comments (5)

jlinn avatar jlinn commented on July 19, 2024

Thanks!

To retrieve all tasks for a project:

Tasks tasks = asana.projects().getTasks(projectId);

To retrieve all tasks for a workspace:

Tasks tasks = asana.workspaces().getTasks(workspaceId);

from asana-api-java.

arminus avatar arminus commented on July 19, 2024

Thanks, I could have seen that :-/

However, one more question:

Tasks tasks = asana.projects().getTasks(projectId);
for (Task task : tasks)
    System.out.println(task.name + ", Completed = " + task.completed);

This reports all tasks in that projectId as not completed, although some tasks are in fact completed. What am I missing here?

from asana-api-java.

jlinn avatar jlinn commented on July 19, 2024

Hmm.. it looks like Asana's API only returns the task name and id when retrieving tasks in bulk, which is pretty lame. I'll update the client to reflect that when I have some time, but that's your answer.

curl -u <api_key>: "https://app.asana.com/api/1.0/tasks?workspace=<workspace_id>&assignee=me"

from asana-api-java.

arminus avatar arminus commented on July 19, 2024

Ok. Next problem I'm afraid:

Tasks tasks = asana.projects().getTasks(projectId);
for (Task task : tasks) {
    Task theTask = asana.tasks().getTask(task.id);
    Stories stories = asana.tasks().getStories(task.id);

throws

Exception in thread "main" com.sun.jersey.api.client.ClientHandlerException: org.codehaus.jackson.map.exc.UnrecognizedPropertyException: Unrecognized field "id" (Class net.joelinn.asana.stories.Story), not marked as ignorable

from asana-api-java.

jlinn avatar jlinn commented on July 19, 2024

543bd39 resolves this. I'll release a new version shortly.

from asana-api-java.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.