$_REQUEST & $_POST empty

Tejas Mehta August 30, 2013

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.

1 answer

2 votes
Derrick September 22, 2013

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.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events