How to make installation folder for per customer on Jira Cloud?
Here is the code:
<?php
# Saves 1st POST body to $file.
# Currently on apache $file needs to exist, be empty and:
# permissions: rw
# owner: www-data
$file = "./installed.txt";
if (! filesize($file))
file_put_contents($file, file_get_contents('php://input'));
?>
This code makes a JWT data for only single file but not for multiple customer installs for my Jira Cloud App.