plugin requests post url.
However $_REQUEST & $_POST is empty in POST service.
I have set following parameters in stash-config.properties
plugin.com.atlassian.stash.plugin.hook.threadPoolCoreSize=2
plugin.com.atlassian.stash.plugin.hook.threadPoolMaxSize=3
plugin.com.atlassian.stash.plugin.hook.queueSize=1024
plugin.com.atlassian.stash.plugin.hook.connectionTimeout=10000
plugin.com.atlassian.stash.plugin.hook.changesetsLimit=500
plugin.com.atlassian.stash.plugin.hook.changesLimit=100
Please guide to collect repository and project names.
I had the same problem too and it drove me nutts.
When the create the POST data they do not follow propper encoding of the data, but instead encode to JSON and send the string out as such. For PHP this is incorrect, but you can still recieve the data by redirecting the input stream and then decoding json as follows.
$rest_json = file_get_contents("php://input");
$stash_data = json_decode($rest_json);
Let me know if this work, this is what I had to do.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.