Skip to content

cdownard/Javasana

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Javasana

Java class to access the Asana API for project management (http://www.asana.com)

Use

Javasana depends on the JSONObject class (https://github.com/douglascrockford/JSON-java/blob/master/JSONObject.java and http://www.json.org/javadoc/org/json/JSONObject.html)

The Javasana object implements the methods of accessing the Asana API. The contructor takes your key as an argument to build its basic auth for making API calls.

For example, to list all projects one need only the following:

Javasana asana = new Javasana(yourKeyAsAString);

JSONObject projects = asana.getProjects();
// returns a JSON representation of all objects (i.e. {"data":[{"id":654321979546213,"name":"Project number one"}]})

About

Java class to access the Asana API for project management (http://www.asana.com)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages