diff --git a/Readme.md b/Readme.md index 4cb86d6..d0835d0 100644 --- a/Readme.md +++ b/Readme.md @@ -8,8 +8,7 @@ A PHP library to handle authentication and communication with LinkedIn API. The library/SDK helps you to get an access token and when authenticated it helps you to send API requests. You will not get *everything* for free though... You -have to read the [LinkedIn documentation][api-doc-core] to understand how you should query the API. We just help you -with the boring stuff. +have to read the [LinkedIn documentation][api-doc-core] to understand how you should query the API. To get an overview what this library actually is doing for you. Take a look at the authentication page from 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 ## Installation -Install it with Composer! +Install it with Composer. -```js -// composer.json -{ - // ... - require: { - // ... - "happyr/linkedin-api-client": "dev-master", - } -} +```bash +php composer.phar require happyr/linkedin-api-client:dev-master ``` -Then, you can install the new dependencies by running the ``composer update`` -command from the directory where your ``composer.json`` file is located: - ## Usage In order to use this API client (or any other LinkedIn clients) you have to [register your application][register-app] with LinkedIn to receive an API key. Once you've registered your LinkedIn app, you will be provided with an *API Key* and *Secret Key*. -This example below is a nicer way of connecting to LinkedIn compared to [their code samples][linkedin-code-samples]. +### LinkedIn login + +This example below is showing how to login with LinkedIn. ```php Login with LinkedIn"; ``` -### Post on user's wall +### How to post on LinkedIn wall + +The example below shows how you can post on a users wall. The access token is fetched from the database. ```php $linkedIn=new Happyr\LinkedIn\LinkedIn('app_id', 'app_secret'); @@ -122,6 +115,8 @@ $options = array( '); ``` +## Configuration + ### The api options 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)); echo "Login with LinkedIn"; ``` -### Framework integration +## Framework integration See how I integrated this with [Symfony2](docs/symfony.md). diff --git a/composer.json b/composer.json index 8965a29..66cb244 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "happyr/linkedin-api-client", "type": "library", "description": "LinkedIn API client. Handles OAuth, CSRF protection. Easy to implement and extend. This is a standalone library for any composer project.", - "keywords": ["LinkedIn", "OAuth", "Happyr", "API", "Client", "SDK"], + "keywords": ["LinkedIn", "OAuth", "API", "Client", "SDK"], "homepage": "http://developer.happyr.com/libraries/linkedin-php-client", "license": "MIT", "authors": [