如何强制 Gravatar 显示身份图标
有没有办法强制gravatar始终返回identicon URL?
到目前为止我发现的唯一方法是:?forcedefault=1&default=myCustomGenerateImageUrlHere
。但是我不想自己生成一个标识符。
有 ?forceIdenticon
参数吗?
Is there any way to force gravatar to always return the identicon URL?
The only way I found so far is: ?forcedefault=1&default=myCustomGeneratedImageUrlHere
. However I don't want to generate an identicon myself.
Any ?forceIdenticon
param?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加
&f=y
这将强制使用默认值,并使用d=identicon
或default=identicon
将默认值指定为标识>例如:
Gravatar 站点上描述了其他可用的默认值。
Add
&f=y
which will force use of the default, and specify the default to be an identicon withd=identicon
ordefault=identicon
For example:
The other defaults available are described on the Gravatar site.
我最终只使用
md5(MY_CUSTOM_SALT + $email)
作为标识符。I ended up with just using
md5(MY_CUSTOM_SALT + $email)
as an identifier.