I suspect something changed in the API
I am trying to upload variant images, but when I supply the src as drive direct link it fails
{
"errors": {
"image": [
"Could not download image: [\"Image https://drive.google.com/uc?export=download&id=[0B9o1MNFt5ld1N3k1cm9tVnZxQjg](https://drive.google.com/uc?export=download&id=0B9o1MNFt5ld1N3k1cm9tVnZxQjg) failed to download. - file not found. Check that file can be found at your URL.\"]"
]
}
}
The curl command is
curl -X POST \
[https://example.myshopify.com/admin/api/2021-10/products/736972003xxxx/images.json](https://example.myshopify.com/admin/api/2021-10/products/736972003xxxx/images.json) \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-H 'x-shopify-access-token: <<token>>' \
-d '{
"image": {
"position": 1,
"src": "[https://drive.google.com/uc?export=download&id=0B9o1MNFt5ld1N3k1cm9tVnZxQjg](https://drive.google.com/uc?export=download&id=0B9o1MNFt5ld1N3k1cm9tVnZxQjg)"
}
}'