Third-party cookies will be blocked, how to solve it?
I'm getting this warning when making requests to get images hosted on Cloudinary.
class PostImages(models.Model):
post = models.ForeignKey(Post, related_name='images', on_delete=models.CASCADE)
image = models.ImageField(upload_to='post_images/', storage=MediaCloudinaryStorage())
DEFAULT_FILE_STORAGE = 'cloudinary_storage.storage.MediaCloudinaryStorage'
After that I simply loaded the model in a view and passed it to the template, and then loaded the images
Answers
-
Hi Trent,
Would it be possible to provide some more context here?
I'm not immediately sure how what you have shared relates to cookies. Would it be possible to share some more information?
Thanks
0 -
I'm also wondering if there's action I need to take regarding the deprecation of third-party cookies on Chrome, here's a link to Google's info on the topic: https://developers.google.com/privacy-sandbox/3pcd.
I have a web-app that allows users to upload to Cloudinary. I'm seeing this notice in the Chrome devtools:
Cookies with the
SameSite=None; Secure
and notPartitioned
attributes that operate in cross-site contexts are third-party cookies. In future Chrome versions, reading third-party cookies will be blocked. This behavior protects user data from cross-site tracking. Please refer to the article linked to learn more about preparing your site to avoid potential breakage.AFFECTED RESOURCES
7 cookies
Name Domain & Path __cfruid .cloudinary.com/ _cfuvid .cloudinary.com/ _ga .cloudinary.com/ cf_clearance .cloudinary.com/ _hp2_ses_props.<number> .cloudinary.com/ _hp2_id.<number> .cloudinary.com/ _ga_<id-or-something> .cloudinary.com/
1 -
Hey @rowdy.
The deprecation of cookies is something we're certainly aware of and are working towards accommodating. For now, there is no official advice I can provide, but please stay tuned to our documentation and blog for further updates in the upcoming months.
Kind regards,
-Danny
2 -
Hey! I'm here because we are also in the same boat. Would love updates. :) Thanks!
0 -
Hi @awareham. Sadly, no updates to provide at this time. It is of course being discussed internally, but there is nothing that I'm able to share here.
As mentioned above, the best places to check would be our documentation links and blog posts.
I hope this helps!
-Danny
1 -
Thanks @DannyFromCloudinary !
0