USE CASES AND METHODS COMBINATION
The methods can be combined for a more efficient search.
SEARCHING FOR USER’S CONNECTIONS WITH CATEGORIZATION BY RELATIONSHIP TYPE
Learning the connections of a social media user can be necessary in different use cases — crimes investigation, background checks, KYC, fraud prevention. For more efficient search for related users, we at Social Links have combined several methods to quickly create a schema of relationships for any user of interest.
This technique recursively searches for a user’s connections, which provides complete information about the user’s relationships with other users and is especially useful when the user has hidden connections.
As input we are given a profile of the user of interest, and as output we get related users, each of which is assigned an index of the nature of the relationship with the user of interest. The method returns a list of linked users consisting of commenters, likers, reposters and authors from posts, photos, videos and comments in which the user of interest has been tagged or published. In addition to the user’s connections, you will get photos, videos, posts, groups, tags, pages, and profile information.
Here is an example of part of the result of such a technique:
{
"id": "XXXXXXXXXXXXXXX",
"name": "Jane Dou",
"url": "https://{domain}/jane.dou",
"alias": "jane.dou",
"photo": "",
"is_page": false,
"category": "",
"is_verified": false,
"type": "profile",
"is_author": false,
"score": 20,
"connection_types": [
"with"
],
"connection_photos": {
"XXXXXXXXXXXXXXXXX": {
"with": [
0000000000
]
},
"XXXXXXXXXXXXXXX": {
"with": [
0000000000
]
}
}
},
{
"id": "XXXXXXXXX",
"name": "Jane Dou",
"url": "https://{domain}/XXXXXXXXX",
"alias": "",
"photo": "{link}",
"is_page": false,
"category": "",
"is_verified": false,
"type": "profile",
"score": 20,
"connection_types": [
"with"
],
"connection_photos": {
"XXXXXXXXXXXXXXX": {
"with": [
0000000000
]
}
},
"connection_posts": {
"XXXXXXXXXXXXXXX": {
"with": [
0000000000
]
}
}
},
{
"id": "XXXXXXXXXX",
"name": "Jane Dou",
"alias": "jane.dou",
"profile-image": "{link}",
"url": "https://{domain}/jane.dou",
"reaction_type": "Like",
"score": 12,
"connection_types": [
"reaction",
"with"
],
"connection_posts": {
"XXXXXXXXXXXXXXXX": {
"reaction": [],
"with": [
0000000000
]
}
}
}
To get access to this method, please, read the SUPPORT page.