Images uploaded in Cloudinary not visible in Strapi Media Library (v4)

I have successfully added Cloudinary provider plugin to Strapi by following the steps in the official documentation: https://market.strapi.io/providers/@strapi-provider-upload-cloudinar. When I upload an image using Add new assets in Strapi Media Library it works as expected, the uploaded image is visible in Strapi and Cloudinary.

Question: how can I see images in Strapi Media Library that I uploaded directly in Cloudinary?

Use case: I would like to exclusively use Cloudinary (Web and API interfaces) for uploading and managing all images, and only do the association between uploaded images to Post (content type) in Strapi.

Configuration in plugin.ts
export default ({env}) => ({
  upload: {
    config: {
      provider: 'cloudinary',
      providerOptions: {
        cloud_name: env('CLOUDINARY_NAME'),
        api_key: env('CLOUDINARY_KEY'),
        api_secret: env('CLOUDINARY_SECRET'),
      },
      actionOptions: {
        upload: {},
        uploadStream: {},
        delete: {},
      },
    },
  },
})
Configuration in middleware.ts
  {
    name: 'strapi::security',
    config: {
      contentSecurityPolicy: {
        useDefaults: true,
        directives: {
          'connect-src': ["'self'", 'https:'],
          'img-src': ["'self'", 'data:', 'blob:', 'strap.io', 'market-assets.strapi.io', 'res.cloudinary.com',],
          'media-src': ["'self'", 'data:', 'blob:', 'strap.io', 'market-assets.strapi.io', 'res.cloudinary.com',],
          upgradeInsecureRequests: null,
        }
      }
    }
  }
System Information
  • Strapi Version: 4.13.1
  • Operating System: Linux
  • Database: SQLite
  • Node Version: 18.17.1
  • NPM Version: 9.8.1
  • Yarn Version: N/A

In my case, I found the solution at https://stackoverflow.com/questions/73008754/images-in-strapi-media-library-not-showing.

I think the only difference with the official configuration is in the the ‘img-src’ and ‘media-src’ directives (dl.airtable.com instead of market-assets.strapi.io)