Questions tagged [trello]

Trello is a collaboration tool that organizes your projects into boards. In one glance, Trello tells you what's being worked on, who's working on what, and where something is in a process.

586 questions
-1
votes
2 answers

How to transfer variable from python file to python flask

I want to transfer label_count and card_m to my main flask python file. How do I do that? I already tried importing it it didn't work. And if there is any solution to card_m I don't want repeat request so many times import requests import json from…
-1
votes
1 answer

How to send an action using a webhook in trello?

I am trying to create a comment on my card whenever a card is created on my trello board. I have access to my Api key and Token. $json = file_get_contents("php://input"); $data = json_decode($json,true); $fp = fopen("myjson.txt",'w'); …
-1
votes
1 answer

I want to fetch a JSON from a website, but keep getting the 401 error

https://trello.com/1/boards/7AmLPD2t/cards?pluginData=true I want to fetch the JSON in this URL, but I can't. Any help? I've tried most of the methods available on Stack Overflow already.
-1
votes
1 answer

How can I print all cards from "List Done" list in Py-trello?

I have written function that returns array with all trello cards: def get_cards_from_board(my_board_1): T = [] lists = my_board_1.list_lists() for l in lists: cards = l.list_cards() for c in cards: assert…
-1
votes
1 answer

Using the ruby-trello gem, how can I determine whether a board is public or not?

I'm using the ruby-trello gem to access the Trello API. I tried this: > board = Trello::Member.find('me').boards.first > board.prefs['permissionLevel'] => "org" > board.organization.prefs Traceback (most recent call last): 1: from…
Tom at FFI
  • 177
  • 12
-1
votes
1 answer

Attach image to Trello card

I'm working with the Trello API. I want to attach an image to a newly created card. I have no problem POSTing the new card and getting the card id to then PUT the attachment. My project is made in Laravel 5.4 and I'm using Guzzle to make the HTTP…
freddieRV
  • 101
  • 3
  • 7
-1
votes
1 answer

How to use Trello API with asp.net?

I am new to using the Trello API and am using asp.net I have built an asp.net form containing card information. I want to save the form information into Trello, as a new card, instead of storing it in my database.
-1
votes
2 answers

How to display an array of object in a ng-repeat with angular js

Why can't tab_cards (array of objects) be assigned to $scope.cards? HTML:
-1
votes
3 answers

Calling Javascript from a HTML webpage using Javascript

I understand that the title is a little difficult to understand basically there is javascript code within this html page (https://api.trello.com/1/client.js?key=1105ed3bc15daddc1cc2dae6edd5bae3). What I need to do is call it using javascript…
SmallerMe
  • 109
  • 1
  • 6
-1
votes
1 answer

Github & Trello lists

I'm working on a project that's just about done. Now I just need a list that shows all the things I've worked on. Luckily I've been using Github and Trello to keep track of all my work. Does anyone know how to get a simple list of commits/activities…
user1433479
  • 135
  • 1
  • 5
  • 20
-2
votes
1 answer

Interfacing Symfony with Trello by API and cdaguerre/php-trello-api

I am trying to use the cdaguerre/php-trello-api in order to interface my Symfony app with Trello. I am using key and token. I have taken the API key from https://trello.com/app-key. I have taken the token by…
Matteo Cacciola
  • 85
  • 1
  • 1
  • 8
-2
votes
1 answer

Using Trello API Key in a Django Project

I've checked Stackoverflow and I haven't been able to find a answer to my question, so I'm asking here. I'm trying to create a dashboard which uses the Trello API in order to display specific metrics. The code section where I'm having trouble is…
stntmnky
  • 37
  • 1
  • 7
-3
votes
1 answer

inboard drag and drop between stages iOS

I'm trying to do Trello like iOS app. With drag and drop boards/cards from one stage to another. Does anybody knows any libraries that I can use to simulate that drag and drop process for swift 4? Thank you in advance :)
-3
votes
1 answer

VSTS vs Trello - Workflow

We are currently using Trello to manage our workflow, however some of the developers want to change to VSTS and others want to stay with trello. Can one give any insight as to what product is best?
Lou
  • 1
-3
votes
2 answers

Trello cards show amount on a webpage

How to get how many cards have a list in Trello and show it on a page in a site? It is possible? I want for example: -------- MY WEB PAGE --------- TO-DO: 2 DOING: 5 DONE: 10
1 2 3
39
40