ITrello trello = new Trello(AppKey);
trello.Authorize(Token);
Member me = trello.Members.Me();
for example, in this case it was to return my user but always return null, i want to know how to fix it. Thaks.
ITrello trello = new Trello(AppKey);
trello.Authorize(Token);
Member me = trello.Members.Me();
for example, in this case it was to return my user but always return null, i want to know how to fix it. Thaks.
Copyright © 2021 Jogjafile Inc.
Are you sure you are passing the correct AppKey
stringto theTrelloconstructor?Per the documentation, you have to do it like so.
Where
[your application key]is the key string you get from https://trello.com/1/appKey/generate (need to be logged in to Trello before you access that url.The token in your 2nd line is also a string, not a class.
Source: Trello.net Wiki