8
8
9
9
A PHP library to handle authentication and communication with LinkedIn API. The library/SDK helps you to get an access
10
10
token and when authenticated it helps you to send API requests. You will not get * everything* for free though... You
11
- have to read the [ LinkedIn documentation] [ api-doc-core ] to understand how you should query the API. We just help you
12
- with the boring stuff.
11
+ have to read the [ LinkedIn documentation] [ api-doc-core ] to understand how you should query the API.
13
12
14
13
To get an overview what this library actually is doing for you. Take a look at the authentication page from
15
14
the [ API docs] [ api-doc-authentication ] .
@@ -28,29 +27,21 @@ Here is a list of features that might convince you to choose this LinkedIn clien
28
27
29
28
## Installation
30
29
31
- Install it with Composer!
30
+ Install it with Composer.
32
31
33
- ``` js
34
- // composer.json
35
- {
36
- // ...
37
- require: {
38
- // ...
39
- " happyr/linkedin-api-client" : " dev-master" ,
40
- }
41
- }
32
+ ``` bash
33
+ php composer.phar require happyr/linkedin-api-client:dev-master
42
34
```
43
35
44
- Then, you can install the new dependencies by running the `` composer update ``
45
- command from the directory where your `` composer.json `` file is located:
46
-
47
36
## Usage
48
37
49
38
In order to use this API client (or any other LinkedIn clients) you have to [ register your application] [ register-app ]
50
39
with LinkedIn to receive an API key. Once you've registered your LinkedIn app, you will be provided with
51
40
an * API Key* and * Secret Key* .
52
41
53
- This example below is a nicer way of connecting to LinkedIn compared to [ their code samples] [ linkedin-code-samples ] .
42
+ ### LinkedIn login
43
+
44
+ This example below is showing how to login with LinkedIn.
54
45
55
46
``` php
56
47
<?php
@@ -84,7 +75,9 @@ echo "<a href='$url'>Login with LinkedIn</a>";
84
75
85
76
```
86
77
87
- ### Post on user's wall
78
+ ### How to post on LinkedIn wall
79
+
80
+ The example below shows how you can post on a users wall. The access token is fetched from the database.
88
81
89
82
``` php
90
83
$linkedIn=new Happyr\LinkedIn\LinkedIn('app_id', 'app_secret');
@@ -122,6 +115,8 @@ $options = array(
122
115
</share >');
123
116
```
124
117
118
+ ## Configuration
119
+
125
120
### The api options
126
121
127
122
The third parameter of ` LinkedIn::api ` is an array with options. They will eventually be past to a Request client but
@@ -192,7 +187,7 @@ $url = $linkedIn->getLoginUrl(array('scope'=>$scope));
192
187
echo "<a href =' $url' >Login with LinkedIn</a >";
193
188
```
194
189
195
- ### Framework integration
190
+ ## Framework integration
196
191
197
192
See how I integrated this with [ Symfony2] ( docs/symfony.md ) .
198
193
0 commit comments