We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had the above issue where $payload would always be null.
Now, I just know just enough php to get myself into trouble but I was able to resolve it like so:
$data = $_REQUEST["payload"]; $unescaped_data = stripslashes($data); $payload = json_decode($unescaped_data);
Obviously I could be opening up all kinds of issues but just wanted to make this visible.
The text was updated successfully, but these errors were encountered:
I'm having a similar issue. Draft webhook is returning an empty file simply named ".md".
e: forgot to mention that your solution worked perfect for me, thanks!
Sorry, something went wrong.
No branches or pull requests
I had the above issue where $payload would always be null.
Now, I just know just enough php to get myself into trouble but I was able to resolve it like so:
Obviously I could be opening up all kinds of issues but just wanted to make this visible.
The text was updated successfully, but these errors were encountered: