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
0
votes
1 answer

How to Retrieve (not create) Tasks from Asana using Apps Script & Personal Access Token

I am attempting to retrieve, but not create, tasks from Asana using Google Apps Script. Using the Asana API Explore, I have constructed a URL that returns the data I desire:…
Brandon
  • 3,572
  • 2
  • 12
  • 27
0
votes
1 answer

How can I use ASANA.com on Android Studio?

I want to use ASANA on Android Studio. I entered my username and password and then entered my project number incorrectly but gave me an error My question is: How to connect to this service? How do I use this service on Android Studio? This is…
Majid Ahmadi Jebeli
  • 517
  • 1
  • 6
  • 22
0
votes
1 answer

How can I add a user to organization in ASANA via API?

I'd like to add a new user to ASANA programmatically. I already have the OAUTH App and the user token. Looking at the API I can't find a way to "create a new user". Is it possible to create a new user simple via API? Otherwise, is it possible to…
Ziba Leah
  • 2,484
  • 7
  • 41
  • 60
0
votes
1 answer

Asana API - How to add multiple tags when creating task?

As the title says, how do i add multiple asana tags when creating task? I have this var task = { "data" : { "name" : projectName, "workspace" : getAsanaWorkspace(), "team" : teamId, "notes": desc, …
0
votes
2 answers

Export asana project in csv via API

I want to regularly export a project from Asana in csv, programatically. An example of how to do this manually is here. My objective is to have a frequently updated list of all tasks and where they are in the project (what "column") for reporting…
sapo_cosmico
  • 6,274
  • 12
  • 45
  • 58
0
votes
1 answer

How can I use stunnel to test my Asana API calls

Any idea how I can test I have a GWT app that retrieves data from the Asana API. I've not been able to test locally since the Deprecation of OAuth 2.0 ‘http’ Redirects. The Asana Docs…
0
votes
1 answer

Asana Python API : Find all tasks that are unassigned in a workspace

I am using the python-asana API, https://github.com/Asana/python-asana Using this, it is very easy to get all tasks in a workspace if I specify the task assignee and the workspace, like so, task_fields = ["this.workspace", "this.name",…
nitin
  • 7,234
  • 11
  • 39
  • 53
0
votes
1 answer

Send and information to Asana from sql server via api asana php

I need to know how i can make an app how can sent information from a sql server database to asana and return from asana to a sql server
Patrickr3
  • 1
  • 1
0
votes
1 answer

How to use OAuth 2.0 with a Google Apps Script library, with a static redirect URL?

I can't figure out how to make a shared Google Apps Script library, that uses OAuth 2.0. The problem is that the usercallback redirect URL changes, every time I use the library in a different script. However, that means I'd need to add a new app and…
jon_wu
  • 1,113
  • 11
  • 26
0
votes
1 answer

Asana project statuses : creating web summary

My goal is to query Asana for project statuses (posts within the 'Progress' tab) and display them on a webpage. The intention is to give some visibility to those who can't go into Asana's UI and see the information there. Here's the thing though. …
TWZ
  • 1
  • 1
0
votes
2 answers

How can I create task in asana from setting asana to forward emails back

I'm using Asana for forwarding email from other website that I post email for any comments, but the method was is any one can send email to *elp@***.net and as I set asana to forward this email to asana to create new task
0
votes
1 answer

"No route found" error with Asana Connect

As per this, I'm trying to use the code received from the authorization endpoint to exchange for a token, using the Authorization Code Grant flow. I first issue this…
Eric Legault
  • 5,706
  • 2
  • 22
  • 38
0
votes
1 answer

posting a task in asana through API won't accept line breaks for "notes"

when creating a task in Asana through API it won't accept line breaks for the "notes" parameter. Is there any workaround for this?
0
votes
1 answer

how to connect odoo with asana?

I want to connect my odoo with asana project. but it display HTTPError: HTTP Error 400: Bad Requesterror. def execute(self, cr, uid, ids, context=None): params = { 'client_id': '142025919&', 'client_secret': '9691f60a6ca68&', …
0
votes
1 answer

Possible to have more than one redirect_uri?

I would like to be able to redirect to a development environment in addition to the production environment. Is it possible to specify more than one redirect_uri? Specifically, I would like to be able to redirect to localhost. Thanks!