Giter Club home page Giter Club logo

asananet's Introduction

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 can be used in async methods. To use them in non-async methods, add .Wait(); to the call.

For example, to get the current user's information:

var me = await asana.GetMe;
Console.WriteLine("Hello, " + me.Name);

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

var workspaces = await asana.GetWorkspaces();

foreach (var workspace in workspaces)
{
    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(24);
await newTask1.Save(asana);

For more examples take a look at the AsanaNetTests project.

###Error callback method The error callback method may be in the following form:

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

}

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) => {});

For backwards compatibility, callback methods are still supported.

###Work is on-going! Please contribute!

asananet's People

Contributors

niieani avatar acron0 avatar robertmiles3 avatar

Watchers

JBBARON 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.