node-trello
node-trello copied to clipboard
Node wrapper for Trello's HTTP API.
It is required to configure request module (timeout, pool etc.).
I'm doing everything correctly according to documentation but I'm continually getting an error returned saying that **trello.get is not a function**. Code: `trello.get("/1/lists/" + listId + "/cards?fields=id,name,desc",{ cards: "open" },...
Hi! I don’t really care about this anymore, which is probably frustrating for all of you that are using it. Would you be interested in taking over the project?
`var trello = new Trello(TRELLO_API_KEY, user.Token);` `trello.makeRequest('get', '/1/members/' + TRELLO_API_KEY + '/boards',` `{` ` fields: 'name,url,shortLink'` `}).then(function (boards) {` ` res.send(boards);` `})` I am sure I am missing something, but...
I'm attempting to use this package to interact with the Trello API inside a Meteor app. However running through setup and attempting to make an api call in my client-side...
This repo could benefit from some guidance on how to use its features. There's support for Oauth, but no documentation on what functions need to go in what order. On...
error TS7016: Could not find a declaration file for module 'node-trello'. '/media/workplace/Work/Work/Pack3/TT/tt-api/node_modules/node-trello/index.js' implicitly has an 'any' type. Try `npm install @types/node-trello` if it exists or add a new declaration (.d.ts)...
+ Update dependency `should` + Return a promise for then chaining
It looks like PUT requests fail because the json body is not also added to the URL as query params. Annoying, but seemingly required for the trello API. Am I...