Questions tagged [asana-connect]

Asana Connect is a way you can connect an Asana account with any partner website or app using a trusted authentication method, OAuth.

Asana Connect is a way you can connect an account with any partner website or app using a trusted authentication method, .

Read more on the launch blog post.

40 questions
4
votes
2 answers

How can I create a new project with tasks in Asana using Python?

I see some questions that have been asked of how to create tasks using an API, but I want to know how to create a new project. I have predetermined format of how I want to create a new project every time that I want to create a new one. There are…
Zachary Weixelbaum
  • 904
  • 1
  • 11
  • 24
2
votes
1 answer

Can I use Google Apps Script as Asana Webhooks endpoint (doPost)?

I'm trying to connect Google Docs with Asana. I can create tasks from Google Docs and save the connection to MySql database so I can display tasks inside Google Document. Now I need those tasks to be synced with Asana all the time, so I wanted to…
Silko
  • 584
  • 1
  • 8
  • 26
2
votes
2 answers

Export tasks with Comments from Asana

I want to export all the details from Asana i.e all workspaces, its projects and all tasks along with the comments. I tried exporting in Asana but I could only get the tasks without comments. Is there any way we can export all the tasks with the…
user2109788
  • 1,266
  • 2
  • 12
  • 29
2
votes
1 answer

Creating new task through WebHook with Asana API

I am working with a form system very similar to WUFOO that allows me to send data to an external website using WebHooks. I have been able to connect my form to my ASANA system through Zapier but I cannot seem to get the API system to operate…
2
votes
1 answer

Get info about latest created and completed tasks in asana

I need to maintain list if all user's incomplete tasks with asana API. Right now, the best solution I came up with is polling asana for every X minutes and use /tasks with completed_since filter. However this is inefficient, since I have to perform…
Trungi
  • 57
  • 1
  • 6
1
vote
1 answer

Has anyone experienced an issue with not being able to create Asana tasks from Slack?

I have connected Asana with Slack and added Asana to the channel. I have the option to create an Asana task from Slack but when I select any of the options from the dropdown, it tells me Sorry, that didn’t work. Try again? I have connected Asana…
1
vote
2 answers

How do I create a new task in Asana using Alfred?

I'd like to use Alfred (Mac app) to create a new task in my Asana account from anywhere on my computer (I'm not a programmer). I'm trying to create a workflow where the search query can be used to create a new task. Is there a way of using the "JSON…
1
vote
1 answer

Fetching asna redirect url parameter on google app engine in golang

My asana oauth redirect URL is something like https://testapp.appspot.com/api/redirect.asana#access_token=123456789 I am not sure how to fetch access_token now. Note : if I am changing ? to # then its working fine by using…
Nikhil Maheshwari
  • 2,198
  • 18
  • 25
1
vote
1 answer

Why am I receiving a 500 status when trying to connect with ASANA api?

I am using this example: https://github.com/ajimix/asana-api-php-class/blob/master/examples/oauth.php to learn how to use the asana's oauth. I already registered my app on the asana's developers webpage. But, when I get the asana's response with my…
1
vote
1 answer

Can I change the ownership of an Asana API app?

I inadvertently created an app using an old Asana account that I'd now like to deactivate. I'd like to transfer ownership of the app (keeping the same client ID) to my actual active account. Is there a way to do this? I could create a new app (with…
1
vote
1 answer

How to handle expiration of OAuth access_token using Asana node client?

Using Asana's NodeJS module (https://github.com/Asana/node-asana) with OAuth, how should I handle expiration of the access_token? Does the client provide some mechanism that I should use to detect this? Does it provide something I should use to get…
Ghazgkull
  • 970
  • 1
  • 6
  • 17
0
votes
1 answer

Asana: Can I add API call on Asana Workflow Action?

Currently, it seems that Asana Workflow Action does not support skipping weekends in due date calculation, which is achievable in NodeJS. I am thinking if we can let it make an API call whenever a task has been moved into a certain section so that…
Terry Windwalker
  • 1,343
  • 2
  • 16
  • 36
0
votes
1 answer

Asana: Adding a task to a project section while creating it

I am trying to add a task on a particular section of a project using Asana API. I have tried the membership object with project and section id specified in the following doc. Asana api doc But it's throwing 404 when I run the api call. What am I…
D-user
  • 119
  • 1
  • 2
  • 11
0
votes
1 answer

Asana/php-asana getTasks() Invalid Request Error

Whenever I use getTasks() it returns Invalid Request However when I use getTasksForProject it will return values. getTasks() $tasks = $asana_client->tasks->getTasks(["opt_fields" => "name,due_on"]); foreach ($tasks as $task) { …
Shulz
  • 508
  • 3
  • 12
  • 27
0
votes
1 answer

Asana Python Connector - Get dataframe of all tasks for all projects

I am trying to get the information of all the tasks for all the projects in a certain workspace in python so i get generate some graphs. I am struggling to get any information on how to achieve this online or on…
dodoelhos
  • 147
  • 1
  • 12
1
2 3