Gravatar 在用户系统中的实现

发布于 2024-09-30 14:11:18 字数 217 浏览 5 评论 0原文

我一直在考虑为所有用户的个人资料图片实现 Gravatar,但我对一两件事有点困惑。

想象一下,就像这个网站一样,我有一个未注册 gravatar 的当前用户。为了给他们一个头像,我是否必须告诉他们单独注册头像,或者是否有一个 API 函数可以在它们尚不存在时注册它们?

另外,我只看到从头像获取信息,但我不经常看到将信息添加到他们的服务中,比如新的头像。是否有将数据传送到服务器的功能?

I have been looking arund at implementing Gravatar for all my users profile pictures but I am a little confused about one or two things.

Imagine, like this site, I have a current user who is not registered with gravatar. In order to give them a gravatar, do I have to tell them to register with gravatar separately or is there a API function that will register them if they do not yet exist?

Also I only ever see getting information from gravatar but I do not very often see putting information to their services, like a new avatar. Is there functions for putting data to their servers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人九事 2024-10-07 14:11:18

通常,您会使用默认图像选项之一(请参阅http ://en.gravatar.com/site/implement/images/)。如果头像不存在,将根据您的设置提供一个头像(直到用户实际选择/创建头像)。我会保留在他们的网站上上传图像,但您可以使用他们的 xml-rpc api< /a>

Normally, you'd use one of the default image options (see http://en.gravatar.com/site/implement/images/). If a gravatar doesn't exist one will be provided based on your settings (until the user actually selects / creates a gravatar). I'd keep the uploading of images on their site, but you could use their xml-rpc api

可爱暴击 2024-10-07 14:11:18

使用与这些类似的来源放置图像标签

<img src="http://www.gravatar.com/avatar/<?php echo md5($_POST['email']);?>

Put an image tag use the source similar to these

<img src="http://www.gravatar.com/avatar/<?php echo md5($_POST['email']);?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文