-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could not decode base64 #156
Comments
Can you please raise a support ticket here: https://support.cloudinary.com/hc/en-us/requests/new with the base64 file you tried to upload and your cloud name and we will try and reproduce the issue. |
I am having the same issue, any update on this? |
Hi @adriendomoison . I see you've submitted a ticket via our support centre about this and I've just responded on there. |
same issue. anyone have solution? @aditimadan-Cloudinary @ankitvar22 @adriendomoison @aleksandar-cloudinary @ankitvar22 |
Hi @adirzo . Here are two points which I raised with Adrien about his uploads that helped in getting this to upload correctly. These were: The data needs to be sent as application/x-www-form-urlencoded rather than form data. So with cURL you can use --data rather than -F You need to URL escape your whole Base64 input string. Just as an example, the start of the Base64 string should be data%3Aimage%2Fpng%3Bbase64%2C rather than data:image/png;base64,, but you have to escape all of the Base64 which inlcudes +, = and / characters. If you're performing these steps already and it isn't working for you then please provide a short code snippet of your upload code as well as an example Base64 String which you try to upload and we'll be able to take a look. |
did you solve it yet? I have the same issue. |
@asynctushar Uploading assets using the Base64 URI is supported, and we have received your query on the issue for your upload implementation (i.e., support ticket 201640). As the detail of the issue that you are experiencing may be localized to your implementation, we will continue to provide you with more information through the ticket. |
Getting could not decode base64 while uploading image to cloudinary using base64 DATA URI.
The text was updated successfully, but these errors were encountered: