Read The Absolute Redirected SRC Attribute URL For An Image
I'm using the Twitter avatar API to fetch a user's avatar URL on the client-side, and I'd like to cache the response, but instead of a regular JSON (or indeed, any other type), the
Solution 1:
Rather than use the
http://api.twitter.com/1/users/profile_image/<user_id>
API call, I used
http://api.twitter.com/1/users/show.json?user_id=
instead and extracted the avatar URL from there. It's not as light-weight because it returns a raft of other user data too, but even protected users avatars are returned without the need for authentication, so it's a suitable replacement.
Solution 2:
Here's code that loads it only once: http://jsfiddle.net/ionutzp/6Ekub/1/
avatar_loaded = function(img) {
console.log("We loaded an avatar for %s (img)[0].src is %o attr('src') is %o getAttribute('src') is %o", img, jQuery(img)[0].src, jQuery(img).attr('src'), img.getAttribute('src'));
}
var avatar_url = "https://api.twitter.com/1/users/profile_image/60173";
$(window).load(function(){
var img = new Image();
$(img).load(function(){avatar_loaded(this)}).attr('src',avatar_url).appendTo('body');
//jQuery('body').append("<img onload='' src='" + avatar_url + "' width='100' height='100'>");
});
Post a Comment for "Read The Absolute Redirected SRC Attribute URL For An Image"