Closed JoshuaFortriede closed 2 months ago
Testing before REDCapCon 2024! I noticed that the REDCap download wasn't working with my complex password for community.
Fix: in download_redcap.sh, change the curl line (115) to use --data-urlencode for the password, and --data for all other query string variables.
curl -v -o ${zip_file} --data username=$username --data-urlencode password=$password --data version=$redcap_version --data install=1 -X POST ${url}
Thanks @JoshuaFortriede - good catch - I issued a fix commit for this: https://github.com/aldefouw/redcap_cypress_docker/commit/8f4050b79e93925ea89b20a8af55a4a575f544e4
Testing before REDCapCon 2024! I noticed that the REDCap download wasn't working with my complex password for community.
Fix: in download_redcap.sh, change the curl line (115) to use --data-urlencode for the password, and --data for all other query string variables.
curl -v -o ${zip_file} --data username=$username --data-urlencode password=$password --data version=$redcap_version --data install=1 -X POST ${url}