Skip to content

Commit ea7cec4

Browse files
committed
Minor documentation updates
1 parent 08ff6a4 commit ea7cec4

File tree

2 files changed

+14
-19
lines changed

2 files changed

+14
-19
lines changed

Readme.md

+13-18
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99
A PHP library to handle authentication and communication with LinkedIn API. The library/SDK helps you to get an access
1010
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.
1312

1413
To get an overview what this library actually is doing for you. Take a look at the authentication page from
1514
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
2827

2928
## Installation
3029

31-
Install it with Composer!
30+
Install it with Composer.
3231

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
4234
```
4335

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-
4736
## Usage
4837

4938
In order to use this API client (or any other LinkedIn clients) you have to [register your application][register-app]
5039
with LinkedIn to receive an API key. Once you've registered your LinkedIn app, you will be provided with
5140
an *API Key* and *Secret Key*.
5241

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.
5445

5546
```php
5647
<?php
@@ -84,7 +75,9 @@ echo "<a href='$url'>Login with LinkedIn</a>";
8475

8576
```
8677

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.
8881

8982
```php
9083
$linkedIn=new Happyr\LinkedIn\LinkedIn('app_id', 'app_secret');
@@ -122,6 +115,8 @@ $options = array(
122115
</share>');
123116
```
124117

118+
## Configuration
119+
125120
### The api options
126121

127122
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));
192187
echo "<a href='$url'>Login with LinkedIn</a>";
193188
```
194189

195-
### Framework integration
190+
## Framework integration
196191

197192
See how I integrated this with [Symfony2](docs/symfony.md).
198193

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "happyr/linkedin-api-client",
33
"type": "library",
44
"description": "LinkedIn API client. Handles OAuth, CSRF protection. Easy to implement and extend. This is a standalone library for any composer project.",
5-
"keywords": ["LinkedIn", "OAuth", "Happyr", "API", "Client", "SDK"],
5+
"keywords": ["LinkedIn", "OAuth", "API", "Client", "SDK"],
66
"homepage": "http://developer.happyr.com/libraries/linkedin-php-client",
77
"license": "MIT",
88
"authors": [

0 commit comments

Comments
 (0)