Linked in Integration using php codeigniter
First We need to have linkedin Account in Linked in website After Creating Account goto https://www.linkedin.com/developer/apps/ page then create application Then use below php code to access your linked in posts.. [code language="PHP"] $aSettings = array( 'api_key' => "xxxxxxxxxxxxxxxx", 'api_secret' => "xxxxxxxxxxx", 'scope' => 'rw_company_admin', 'redirect_uri' => 'redirect uri specified in linkedin oauth app', ); //$aSettings = array_merge($aSettings, $aParams); /* Set variables */ $this->sApikey = $aSettings['api_key']; $this->sApisecret = $aSettings['api_secret']; $this->sScope = $aSettings['scope']; $this->sRedirectUri = $aSettings['redirect_uri']; } public function index(){ if(!isset($_SESSION["access_token"])){ $this->oAuth(); } $data=array("oauth2_access_token"=>$_SESSION["access_token...