Trello "PUT" API Access performission requirement -
i understand access permission of trello api "put /1/boards/[board_id]".
in document, required permissions: read, put request trello. why has read permission while put may need change information on server according http protocol ?
you'll notice of routes (like put /1/boards/[board_id]/myprefs/emailposition) have read permission despite causing writes - because read doesn't affect state of board, rather affects how current member views board.
the "mass put" route uses lowest-common-denominator permission can use set set scoped put. also check permissions each of individual fields trying set, , fail if don't meet of them.
Comments
Post a Comment