Skip to main content
Retrieve the friends list of a specific Facebook profile.

Method

client.getFacebookFriends.create(params: GetFacebookFriendsCreateParams): Promise<GetFacebookFriendCreateResponse>

Parameters

url
string
required
The URL of the Facebook profile to get friends from.

Usage

const result = await client.getFacebookFriends.create({
  url: 'https://www.facebook.com/john.doe'
});

console.log(result);

Response

Returns a GetFacebookFriendCreateResponse object.