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?