Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've developed a javascript code for get the pictures of any Facebook user.I created a javascript function that generate randomlink that it`s concatenate with the photo path . and then shows the photo. example: https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-ash3/548339_10151989882013306_1841267774_n.jpg


<html> <head> 
<title>get Facebook Picture </title>
<script type="text/javascript">
function getRandomLink()
{ var c = "123456789";
var link = ''; 
for(var i = 0; i <6; i++)
{ link +=c.charAt(Math.floor(Math.random() * c.length)); 
var d= "1234567890";
var link2 = '';
for(var j = 0; j <9; j++) 
{ 
link2 = link2+d.charAt(Math.floor(Math.random() * d.length)); 
}
var e = "1234567890";
var link3 = '';
for(var k = 0; k <12; k++) 
{ 
link3 = link3+e.charAt(Math.floor(Math.random() * e.length)); 
}

}

linker=link+'_'+link2+'_'+link3;
return linker; 
} 
for(var i = 0; i <1000; i++)
{ var randomLink = getRandomLink();
document.write('processing picture....https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-ash3/'+randomLink+'_n.jpg<br/><a href="https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-ash3/'+randomLink+'_n.jpg"><img src="https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-ash3/'+randomLink+'_n.jpg"></a><br /><br />'); } </script>
</head> 
<body> 
<h1>my by ALon$0</h1>
</body> 
</html>`
share|improve this question
1  
I think you were looking for github.com. – ultranaut Oct 10 '12 at 0:49

closed as not a real question by Igy, bensiu, WATTO Studios, Alex Peattie, Kjuly Oct 11 '12 at 6:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

First off, I think you were trying to share your code with people, you should look at github.com.

Second your code does not work as it simply generates a broken image url and shows no real image, so it's of no use honestly speaking.

Here's an easier and better version:

function getId(length) { 
    var num = "111234567890";
    var idLength = length;
    var id = ''; 
    for(var i = 0; i <idLength; i++) { 
        id +=num.charAt(Math.floor(Math.random() * num.length)); 
    }
    return id; 
} 
for(var i = 0; i <10; i++)
{ 
    var randomId = getId(4);
    document.write('Image for UID: ' + randomId +'<br><a href="https://graph.facebook.com/'+randomId +'/picture?type=large" target="_blank"><img src="https://graph.facebook.com/'+randomId +'/picture?type=large"></a><br /><br />');

}​

Here's a working demo: http://jsfiddle.net/KSf9L/

share|improve this answer
thanks sir ... my original idea was trying to get images from a album. – Alonso Jose Oct 10 '12 at 3:02
No problem and i don't think that's possible as most people would have privacy settings in place which blocks access to public. – Syed I.R Oct 10 '12 at 8:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.