Trello API - Get ID Boards

I worked with the Trello API (pretty neat, by the way), but I can't just find why I can't get a list of organization tips. The documentation says that I have to make a call in the form:

GET https://api.trello.com/1/organizations/myorganization/boards?key=<my_app_key> 

But I still get an empty array as an answer. I am a member of the organization with which I need boards, but still I don’t see any boards.

If I try to do this, but through the members (I can get membership boards), I get only the fee that I created.

Thanks in advance for your comments!

Hi,

+4
source share
1 answer

If all boards are not publicly available, you need to provide both the application key and the token allowing you to see the boards in the organization.

The application key is used only to let Trello know which application is making the request; he does not tell Trello who is made on behalf of. For example, if you use your key application, you still need to create a token in order to have access to any of your private boards.

The Getting Started guide contains the section Getting a character from a user

+8
source

Source: https://habr.com/ru/post/1398854/


All Articles