asana

SSL Error occurs on one computer but not the other?

一个人想着一个人 提交于 2019-12-02 07:09:52
I can't figure out why all of a sudden the below code that uses Asana's API generates the below SSL error. Something must have changed on my laptop, since it runs perfectly on my other computer. from asana import asana class Login(object): def __init__(self): api = 'API' self.asana_api = asana.AsanaAPI(api, debug=False) self.user_id = 7359085011308L class Test(Login): def Test(self): Id = 2467584555313L print self.asana_api.list_tasks(Id,self.user_id) Traceback (most recent call last): File "/Users/Chris/Dropbox/AsanaPullPush.py", line 75, in <module> if __name__ == "__main__": main() File "

Asana tag API query often misses newly created Tags

余生颓废 提交于 2019-11-27 08:52:00
问题 when we create projects via API the newly created project is immediately returned in both the webApp and in the API. But a tag created using API "https://app.asana.com/api/1.0/tags" is often returned only after two or three GET requests. Also in the webApp it needs a refresh, online application sync does not update new tags like Projects. This late returns really affects the user interaction. I follow the same workflow thats used for creating and adding project, but tags feels a bit laggy. Am