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 successfully managed to create multiple Facebook test users. Using info on this page https://developers.facebook.com/docs/test_users/

But while attempting to make each connection become a connection with each other using

https://graph.facebook.com/TEST_USER_1_ID/friends/TEST_USER_2_ID?
  method=post$access_token=TEST_USER_1_Access_token

this is my code

my $ua = LWP::UserAgent->new;
        $ua->timeout(3);    
        $ua->env_proxy;
        my $connection= $ua->get("https://graph.facebook.com/$user->{id}/friends/$tmp->{id}?method=post&access_token=$user->{access_token}");
        my $actual_response=$connection->decoded_content;
        if ($actual_response !~ m/error/ig)
        {ok(1,"The Test User email 1 = $user->{email} successfully sends a request to test user email 2 = $tmp->{email}");}
        else
        {ok (0,"The Test User email 1 = $user->{email} FAILS TO send a request to test user email 2 = $tmp->{email} ");}

I get the occasional error of "Do you really know this person... blah blah"

Which is strange cause all of this is done in one script, in a loop. Please note only SOME of these requests blurt that error, I could not detect any pattern either. It seems absolutely random.

Also if I try to make the API call after a while say (~3-4 mins), the request goes through.

I am somewhat sure there is a hiccup from facebooks end. But not to sure. Does any one face the same issue? Any clues how to get around this?

share|improve this question
How do i get my question to get more views? :) – amey Oct 5 '11 at 16:41
What does this have to do with Perl? – CanSpice Oct 5 '11 at 16:47
O i am making these calls using perl. Please see edited question. sorry for the confusion. – amey Oct 5 '11 at 16:54
Also I get the same error occasionally if i hit the URL manually from a browser, so what I am hoping is if someone has encountered the same scenraio, and figured out a way to get around it ??? – amey Oct 5 '11 at 19:26
any insight on this? – amey Oct 7 '11 at 14:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.