facebook profile pic url is expired #1440
-
Your question I referred to this issue: #665 and that is not the case. Feedback
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Not yet but upcoming token support may address this! Right now you could copy a profile image on sign in and save it to a bucket (or database) and then use that copy as a "forever copy" (e.g. using the However I haven't wanted to get into that until we had better tooling to help folks address how to do something like responsibly; including supporting linking to a privacy policy / terms of service from the built-in pages; and supporting built in account deletion and profile management so that users can more easily control what data about them is stored. As an easy to implement alternative, you can also use something like Gravatar to resolve the email addresses on their profile to an image, as that's completely within a users control (and you don't have to worry about hosting it or providing an UI to manage avatars). |
Beta Was this translation helpful? Give feedback.
Not yet but upcoming token support may address this!
Right now you could copy a profile image on sign in and save it to a bucket (or database) and then use that copy as a "forever copy" (e.g. using the
signIn()
event that is triggered after a successful sign in).However I haven't wanted to get into that until we had better tooling to help folks address how to do something like responsibly; including supporting linking to a privacy policy / terms of service from the built-in pages; and supporting built in account deletion and profile management so that users can more easily control what data about them is stored.
As an easy to implement alternative, you can also use something like Gravata…