Giter Site home page Giter Site logo

asananet's Introduction

! This project is no longer actively maintained !


AsanaNet

A .NET implementation of the Asana REST API http://developer.asana.com/

This open-source project uses the MIT license.

Using AsanaNet

To use AsanaNet, start by creating an instance of the Asana service. You can find your API key here.

 var asana = new Asana(YOUR_API_KEY, AuthenticationType.Basic, errorCallback);

All 'Get' requests are asynchronous and so must be accompanied by a callback. For example, to get the current user's information:

asana.GetMe(o =>
{
        var user = o as AsanaUser;
        Console.WriteLine("Hello, " + user.Name);
});

It is also possible to make them synchronize, by adding .Wait();.

Additionally, since the methods always return a task, you can await them within an async method, or another task.

asana.GetMe(o =>
{
        var user = o as AsanaUser;
        Console.WriteLine("Hello, " + user.Name);
}).Wait();

To get a list of workspaces the current user has access to:

asana.GetWorkspaces(o =>
{
    foreach (AsanaWorkspace workspace in o)
    {
        Console.WriteLine("Workspace: " + workspace.Name);
    }
});

To create a new task:

AsanaTask newTask1 = new AsanaTask(workspace);
newTask1.Name = "Pick up the milk!";
newTask1.Notes = "Proper semi-skimmed milk. None of that UHT rubbish.";
newTask1.Assignee = me;
newTask1.DueOn = DateTime.Now.AddHours(2);
newTask1.Save(asana);

Error callback method

The error callback method may be in the following form:

static void errorCallback(string s1, string s2, string s3)
{

}

Also, if you don't want handling anything, you can just pass an empty lambda into the constructor:

_asana = new Asana(_apiKey, AuthenticationType.Basic, (s1, s2, s3) => {});

Notes

asananet's People

Contributors

acron0 avatar niieani avatar fabionaspolini avatar robertmiles3 avatar 3dpros avatar

Watchers

James Cloos avatar

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.