使用 Anysite LinkedIn 节点在 n8n 工作流中提取 LinkedIn 数据
Anysite LinkedIn 节点在您的 n8n 工作流中提供全面的 LinkedIn 数据提取功能。搜索用户、公司、帖子,并提取详细的个人资料信息。
从下拉菜单中选择您的 Anysite API 凭证,或创建新凭证。
搜索 LinkedIn 用户和个人资料。
参数:
输出示例:
{
"users": [
{
"id": "user123",
"name": "John Smith",
"headline": "Senior Software Engineer at Tech Corp",
"location": "San Francisco, CA",
"profileUrl": "https://linkedin.com/in/johnsmith",
"followers": 2500,
"connections": 500
}
]
}
获取特定用户的详细个人资料信息。
参数:
输出示例:
{
"profile": {
"id": "user123",
"name": "John Smith",
"headline": "Senior Software Engineer at Tech Corp",
"summary": "Experienced engineer with 8+ years...",
"experience": [
{
"company": "Tech Corp",
"position": "Senior Software Engineer",
"duration": "2022 - Present",
"description": "Lead backend development..."
}
],
"education": [...],
"skills": ["Python", "AWS", "Kubernetes"],
"recentPosts": [...]
}
}
搜索 LinkedIn 公司和组织。
参数:
输出示例:
{
"companies": [
{
"id": "company456",
"name": "Tech Corp Inc",
"industry": "Computer Software",
"size": "1001-5000 employees",
"location": "San Francisco, CA",
"website": "https://techcorp.com",
"followers": 125000
}
]
}
从 LinkedIn 用户提取帖子和活动。
参数:
输出示例:
{
"posts": [
{
"id": "post789",
"text": "Excited to announce our new product launch...",
"publishedAt": "2024-08-26T10:00:00Z",
"reactions": {
"likes": 45,
"comments": 12,
"reposts": 8
},
"mediaUrls": ["https://example.com/image.jpg"]
}
]
}
使用 LinkedIn 搜索用户操作,根据职位、公司或行业查找潜在客户。
对于找到的每个潜在客户,使用"获取用户资料"收集包括工作经历、技能和近期活动在内的全面信息。
使用 n8n 的内置节点根据条件筛选潜在客户并分配潜在客户分数。
使用 n8n 的集成节点将合格的潜在客户保存到您的 CRM、数据库或 Google Sheets。
工作流示例:
{
"nodes": [
{
"name": "LinkedIn Search",
"type": "@horizondatawave/n8n-nodes-anysite.LinkedIn",
"operation": "searchUsers",
"parameters": {
"query": "marketing manager",
"filters": {
"location": "New York",
"industry": "Technology"
},
"limit": 50
}
},
{
"name": "Get Full Profiles",
"type": "@horizondatawave/n8n-nodes-anysite.LinkedIn",
"operation": "getUserProfile",
"parameters": {
"userId": "={{ $json.id }}",
"includePosts": true,
"postLimit": 5
}
},
{
"name": "Filter Qualified Leads",
"type": "n8n-nodes-base.filter",
"parameters": {
"conditions": [
{
"field": "experience[0].company",
"operation": "notEqual",
"value": "Competitor Corp"
}
]
}
},
{
"name": "Save to Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"parameters": {
"operation": "append",
"sheetId": "your-sheet-id",
"values": [
"={{ $json.name }}",
"={{ $json.headline }}",
"={{ $json.location }}",
"={{ $json.profileUrl }}"
]
}
}
]
}
跟踪行业领袖发布的内容:
监控竞争对手活动和员工动态:
错误: 429 - Rate limit exceeded
解决方案:
错误: 404 - User not found
解决方案:
错误: 400 - Invalid search parameters
解决方案:
{
"name": "LinkedIn with Retry",
"type": "@horizondatawave/n8n-nodes-anysite.LinkedIn",
"retryOnFail": true,
"maxTries": 3,
"waitBetweenTries": 2000,
"parameters": {
"operation": "searchUsers",
"query": "software engineer"
}
}
在批量操作之间添加延迟:
{
"name": "Delay Between Requests",
"type": "n8n-nodes-base.wait",
"parameters": {
"amount": 1,
"unit": "seconds"
}
}
将大型数据集分成较小的批次处理:
{
"name": "Split Into Batches",
"type": "n8n-nodes-base.splitInBatches",
"parameters": {
"batchSize": 10
}
}
使用表达式创建动态搜索筛选器:
// 基于前一数据的动态地点筛选
{
"location": "={{ $json.companyHeadquarters }}",
"industry": "={{ $json.targetIndustry }}"
}
将 LinkedIn 数据与其他来源结合:
{
"workflow": [
"LinkedIn Search → Get Profiles",
"Email Finder → Enrich with Contacts",
"Company Data → Add Firmographic Info",
"CRM Integration → Update Lead Records"
]
}
使用 AI 节点分析 LinkedIn 帖子:
// LinkedIn 帖子情感分析
{
"name": "Analyze Post Sentiment",
"type": "n8n-nodes-base.openAi",
"parameters": {
"operation": "analyze",
"prompt": "Analyze the sentiment of this LinkedIn post: {{ $json.postText }}"
}
}
自动在您的 CRM 中创建潜在客户:
{
"name": "Create Salesforce Lead",
"type": "n8n-nodes-base.salesforce",
"parameters": {
"operation": "create",
"resource": "lead",
"data": {
"FirstName": "={{ $json.firstName }}",
"LastName": "={{ $json.lastName }}",
"Company": "={{ $json.currentCompany }}",
"Title": "={{ $json.headline }}",
"LinkedIn__c": "={{ $json.profileUrl }}"
}
}
}
{
"name": "Create HubSpot Contact",
"type": "n8n-nodes-base.hubspot",
"parameters": {
"operation": "create",
"resource": "contact",
"data": {
"firstname": "={{ $json.firstName }}",
"lastname": "={{ $json.lastName }}",
"jobtitle": "={{ $json.headline }}",
"linkedin_profile": "={{ $json.profileUrl }}"
}
}
}
发送重要潜在客户的提醒:
{
"name": "Slack Alert",
"type": "n8n-nodes-base.slack",
"parameters": {
"operation": "postMessage",
"channel": "#sales-leads",
"text": "🎯 High-value prospect found: {{ $json.name }} at {{ $json.company }}\n📍 Location: {{ $json.location }}\n🔗 Profile: {{ $json.profileUrl }}"
}
}