Hello,
is there a way to work with image_data and not directly image_url?
Citing the official website:
| Required ( choose any of three) |
image_url |
String |
URL of the image.Note: getting images from URLs may take a long time due to internet connection problems, so it is recommended that you upload images directly by using image_file. |
| image_file |
File |
The binary data of the image, uploaded via POST multipart/form-data. |
|
| image_base64 |
String |
Base64 encoded binary data of the image.These three parameters (image_url, image_file and image_base64) will be adopted in the following order of precedence:Highest: image_file; Lowest: image_url. |
|
Hello,
is there a way to work with image_data and not directly image_url?
Citing the official website: