Saya mencoba base64 menyandikan gambar dalam skrip shell dan memasukkannya ke dalam variabel:
test="$(printf DSC_0251.JPG | base64)"
echo $test
RFNDXzAyNTEuSlBH
Saya juga mencoba sesuatu seperti ini:
test=\`echo -ne DSC_0251.JPG | base64\`
tapi tetap tidak berhasil.
Saya ingin melakukan sesuatu seperti ini:
curl -v -X POST -d '{"image":$IMAGE_BASE64,"location":$LOCATION,"time_created":$TIMECREATED}' -H 'Content-type: text/plain; charset=UTF8' http://192.168.1.1/upload
Saya menemukan http://www.zzzxo.com/q/answers-bash-base64-encode-script-not-encoding-right-12290484.html
tapi masih belum berhasil.