1

使用 asana Oauth 获取 Token 时

https://app.asana.com/-/oauth_token返回_

Error

No route found

有什么帮助吗?谢谢!

4

1 回答 1

3

在体式中创建您的应用程序

http://i.stack.imgur.com/5AuYF.png


GET URL = 'https://app.asana.com/-/oauth_authorize?client_id='+ setting.client_id + '&redirect_uri=' + setting.redirect_uri + '&response_type=' + setting.response_type


你得到代码,POST 代码 URL'https://app.asana.com/-/oauth_token?grant_type=authorization_code' + '&client_id=' + setting.client_id + '&client_secret=' + setting.client_secret + '&code=' + query.code + '&redirect_uri=' + setting.redirect_uri


访问代码的有效期为一小时。POST URL 'https://app.asana.com/-/oauth_token?grant_type=refresh_token' + '&client_id=' + setting.client_id + '&client_secret=' + setting.client_secret + '&refresh_token=' + setting.refresh_token -- --- 用于刷新访问 co

于 2013-08-11T15:55:55.163 回答