Hello,
I set up webhook on a list in Trello. The callback is a php script that does this when the method is POST :
file_put_contents("actions/".time(), var_dump($_POST));
Any file created like that doesn't contain anything. What am I doing wrong ?
I can't find where to delete this, but the solution I just found is to do :
file_put_contents("actions/".time(), file_get_contents("php://input"));
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.