In a nutshell, Public Professional Social Network profiles are profiles that any individual can view without being logged into Professional Social Network. Private profiles are profiles you see when you are logged into Professional Social Network.
Public Professional Social Network profiles have less information.
This article will break down what exactly is missing and what is different. And also some workarounds to some common limitations of public Professional Social Network profiles.
Professional Social Network Public Profiles VS Professional Social Network Private Profiles?
Public Professional Social Network Profiles | Private Professional Social Network Profiles |
---|---|
No skills information | Has skills information |
Has language, but no language proficiency | Has language, and proficiency |
No connection count | Has total connection count |
Does not have contact information, social media, and websites | Have contact information, social media, and websites if you are a first-level connection if the profile user has that added into their profile. |
Limited to 10 work experiences | Work experiences are not limited. |
Not every profile has a public profile (approximate 5% of Professional Social Network profiles do not have public profiles) | Cannot visit all private profiles unless within 2nd order of connections (I might argue it is worst than public profiles) |
Profile pictures might be hidden due to privacy setting | Profile pictures are always available as long as you are within two orders of connections |
Some parts of the public profile might be hidden (such as experiences, education, profile summary, etc) | Full profile is always available as long as you are within two orders of connections |
Activities shown on a public profile is limited to articles posted and summaries of the user's activities such as likes, etc. There are also no timestamps for public activities. | Activities shown on a private profile show the full activity such as the actual content, comment, etc. |
Can be scraped. [Legal precedence has been tested in court](https://nubela.co/blog/is-Professional Social Network-scraping-legal/). | Cannot be scraped. See [Professional Social Network suing a vendor](https://nubela.co/blog/what-you-should-know-now-that-mantheos-a-Professional Social Network-scraping-service-is-sued-by-Professional Social Network/) that was scraping private profiles. |
Addressing the limitations of Professional Social Network Public Profiles
Proxycurl API enriches Professional Social Network Profile URLs with public profiles only when our users often come to me asking for workarounds when they experience the limitations of public Professional Social Network profiles.
There are three common complaints about public profiles, and we have workarounds for them. The problems are:
- Fetching skills
- Fetching contact information
- Fetching social media profiles
Fetch skills of public Professional Social Network profiles
Proxycurl API can append skill (keyword) data to public Professional Social Network profiles with the skills=include
parameter. These data are sourced externally via public datasets. Therefore, the skill data we return might not match the skills listed on the user's private profile, but it is the best approximation.
In this python code example, I will show you how to enrich a public Professional Social Network profile with skills information with our Person Profile Endpoint.
from pprint import pprint
import requests
API_KEY = 'YOUR-API-KEY-HERE' # get your api key from https://nubela.co/proxycurl/dashboard
HEADER = {'Authorization': 'Bearer ' + API_KEY}
response = requests.get('https://nubela.co/proxycurl/api/v2/Professional Social Network',
params={
"url": "https://www.professionalsocialnetwork.com/in/siow-shi-jia-450917144/",
"skills": "include",
},
headers=HEADER)
pprint(response.json())
This is how the response with skills look like:
{
...
"skills":[
"adobe photoshop",
"css",
"html5",
"javascript",
"php"
],
...
}
Fetch contact information of public Professional Social Network profiles
Proxycurl API can append
to 400+M profiles in Professional Social Network. A match rate that exceeds what Professional Social Network has to offer even with private profiles. And with greater detail and accuracy.
We can out-perform Professional Social Network when it comes to matching contact information by correlating Professional Social Network profiles with external publicly available sources of contact information. For more information on how to fetch contact information of public Professional Social Network profiles, check out Proxycurl's Contact API.
Get social media profiles of Professional Social Network profiles
Like contact information, Proxycurl API can pair public Professional Social Network profiles with Facebook, Twitter, and Github profile IDs.
We pair these data with publicly available sources and have significant coverage. Again, with a match rate that exceeds what Professional Social Network has to offer.
Proxycurl API can append social media profiles to public Professional Social Network profiles with the extra=include
parameter.
In this python code example, I will show you how you can append social media data to a public Professional Social Network profile with Proxycurl's Person Profile Endpoint.
Scraping public Professional Social Network profiles
The chances are that you chanced upon this article because you are looking to scrape Professional Social Network profiles for commercial or research purposes. And there brings the single biggest difference between public and private Professional Social Network profiles.
Scraping public Professional Social Network profiles has been legally tested in court. Therefore, it is safe to assume that it is safe to scrape public Professional Social Network profiles.
On the flipside, Mantheos Pte Ltd and its founders have been known to scrape private Professional Social Network profiles are now being sued in federal courts for multiple charges, including fraud.
It is wise to keep just scraping public Professional Social Network profiles for your needs to make sure you stay on the right side of the law.
It is tough to scrape public Professional Social Network profiles.
Once you decide to ingest public Professional Social Network profiles for your use-case, you will soon learn that it is a nightmare to scrape Professional Social Network profiles. It would help if you had fresh residential proxies and sophisticated web crawlers, both expensive and complex to acquire and manage. Once you go down this rabbit hole, the problem becomes how I can get to public Professional Social Network data without the complexity of building a dedicated web scraping team.
Proxycurl can help your organization once you get to this stage. Our API lets you build data-driven applications. For example, we have a Person Profile Endpoint which takes a Professional Social Network profile URL and enriches it with fresh profile data in a structured format.
Alternatively, for companies with a larger budget that want to skip API enrichment entirely and work with bulk profile datasets directly, we have LinkDB snapshots that offer exhaustive public profiles for use in Machine Learning (ML) models or be used within your product.
If you are unsure, send us an email at [email protected], and we will be happy to assist you in powering your data-driven application.