its-rigs / Trolly

A Python wrapper around the Trello API. Provides a group of Python classes to represent Trello Objects. All classes come with basic Trello API method calls and are easily extensible to suit your needs. See the README for more details.
MIT License
100 stars 29 forks source link

getAuthorisationUrl does not include API key in generated url #6

Closed ludw closed 11 years ago

ludw commented 11 years ago

The API key is not included in the generated URL from getAuthorisationUrl

If I change line 33 in authorise.py from:

query_params = query_params

to:

query_params = self.addAuthorisation(query_params)

it works as expected.

its-rigs commented 11 years ago

Good spot! The authorise.py was kind of an after though :) Should be sorted now.

Thanks, L