How do I add a link that would let user change their Gravatar on my site? (The same way you can change your Gravatar on Wordpress)
Thanks, Kenneth
|
|
If you provide a link to http://en.gravatar.com/emails/ it will take them to the Gravatar site where they can log in and make changes to their account. I'm not sure if any other public API that would allow this change. |
|||
|
|
Looking at the html source on wordpress.com, it looks like they're using something like ThickBox to load the Gravatar site in an iframe:
|
|||
|
|
|
Automattic's Gravatar API doesn't offer this functionality. Your best bet is to link the user to the Gravatar website. If you really wanted you could do some experimenting with CSRF, I haven't tested to see whether the Gravatar site protects against this exploitation. Best case scenario, it would be spotty - I can't imagine anyone stays logged into the Gravatar account at all times like they would their Twitter account. Finally, you could load the Gravatar site in an iFrame, so the user doesn't really leave your domain. |
|||
|
|
|
It should be possible to implement the chaning of a avatar using XML-RPC. The protocol is specified by Gravatar: http://en.gravatar.com/site/implement/xmlrpc/ There is actually a call
So you need to implement the changing by yourself but you can avoid people to have to login at gravatar. |
|||
|
|