You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
The code below was working and now it throws an exception:
trello = new Trello(myTrelloAPIKey);
trello.Authorize(myTrelloAuthorizationToken);
currentBoard = trello.Boards.WithId(myTrelloBoardId);
The exception does not have a message and has the following stack trace:
at TrelloNet.Internal.TrelloRestClient.ThrowIfRequestWasUnsuccessful(IRestRequest request, IRestResponse response)
at TrelloNet.Internal.TrelloRestClient.Request[T](IRestRequest request)
at TrelloNet.Internal.Boards.WithId(String boardId)
Hello,
The code below was working and now it throws an exception:
trello = new Trello(myTrelloAPIKey);
trello.Authorize(myTrelloAuthorizationToken);
currentBoard = trello.Boards.WithId(myTrelloBoardId);
The exception does not have a message and has the following stack trace:
at TrelloNet.Internal.TrelloRestClient.ThrowIfRequestWasUnsuccessful(IRestRequest request, IRestResponse response)
at TrelloNet.Internal.TrelloRestClient.Request[T](IRestRequest request)
at TrelloNet.Internal.Boards.WithId(String boardId)
I've checked and a direct request to:
https://api.trello.com/1/boards/?key=&token= works as expected.
Can you help me?
Thanks in advance