-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkdapi.go
More file actions
35 lines (32 loc) · 1017 Bytes
/
linkdapi.go
File metadata and controls
35 lines (32 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Package linkdapi provides a Go SDK for the LinkdAPI service.
//
// LinkdAPI is the most advanced unofficial LinkedIn API that connects
// directly to LinkedIn's endpoints for reliable, scalable data access.
//
// Basic usage:
//
// client := linkdapi.NewClient("your_api_key")
// defer client.Close()
//
// profile, err := client.GetProfileOverview("ryanroslansky")
// if err != nil {
// log.Fatal(err)
// }
//
package linkdapi
import (
"github.com/linkdAPI/linkdapi-go-sdk/linkdapi"
)
type Client = linkdapi.Client
type Config = linkdapi.Config
type JobSearchParams = linkdapi.JobSearchParams
type JobSearchV2Params = linkdapi.JobSearchV2Params
type PeopleSearchParams = linkdapi.PeopleSearchParams
type CompanySearchParams = linkdapi.CompanySearchParams
type ServiceSearchParams = linkdapi.ServiceSearchParams
type PostSearchParams = linkdapi.PostSearchParams
var (
NewClient = linkdapi.NewClient
NewClientWithConfig = linkdapi.NewClientWithConfig
DefaultConfig = linkdapi.DefaultConfig
)