<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LinkedPHP - All about connecting with PHP &#187; Api</title>
	<atom:link href="http://www.linkedphp.com/category/api/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linkedphp.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Nov 2009 19:58:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New release phpLinkedIn api connector</title>
		<link>http://www.linkedphp.com/2009/11/30/new-release-phplinkedin-api-connector/</link>
		<comments>http://www.linkedphp.com/2009/11/30/new-release-phplinkedin-api-connector/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 14:42:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Api]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Oauth]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.linkedphp.com/?p=19</guid>
		<description><![CDATA[After some comments and issues a new version of the class library for connecting to LinkedIn Api.



# change log
- extra fields of profile
- ability to do status update
File: phpLinkedIn_v1.1.zip
w
]]></description>
			<content:encoded><![CDATA[<p>After some comments and issues a new version of the class library for connecting to LinkedIn Api.</p>
<p># change log<br />
- extra fields of profile<br />
- ability to do status update</p>
<p>File: <a title="Version 1.1 of the linkedIn php class connector" href="http://www.linkedphp.com/files/phpLinkedIn_v1.1.zip">phpLinkedIn_v1.1.zip</a></p>
<p>w</p>
<form class='donate' method='post' action='https://www.paypal.com/cgi-bin/webscr'>		<input type='hidden' value='' name='amount'/>		<input type='hidden' value='_xclick' name='cmd'/>		<input type='hidden' value='wpeereboom@developmentit.com' name='business'/>		<input type='hidden' value='Donate for me' name='item_name'/>		<input type='hidden' value='1' name='no_shipping'/>		<input type='hidden' value='http://www.linkedphp.com' name='return'/>		<input type='hidden' value='http://www.linkedphp.com' name='cancel_return'/>		<input type='hidden' value='EUR' name='currency_code'/>		<input type='hidden' value='' name='page_style'/>		<input type='hidden' value='0' name='tax'/>		<input type='image' alt='PayPal - The safer, easier way to pay online' name='submit' style='border: 0pt none ;' src='https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif'/></form>
]]></content:encoded>
			<wfw:commentRss>http://www.linkedphp.com/2009/11/30/new-release-phplinkedin-api-connector/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First release classes to connect with PHP to linkedIn api</title>
		<link>http://www.linkedphp.com/2009/11/26/first-release-classes-to-connect-with-php-to-linkedin-api/</link>
		<comments>http://www.linkedphp.com/2009/11/26/first-release-classes-to-connect-with-php-to-linkedin-api/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 21:01:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Api]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Oauth]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.linkedphp.com/?p=14</guid>
		<description><![CDATA[Well, after a day and a night of programming my first release of the php classes that can be used to connect to the LinkedIn Api . I have used the Pecl lib of Oauth to connect to the Api. It is easy to install and good documentation on the php.net site.
Download phpLinked.zip
I have created [...]]]></description>
			<content:encoded><![CDATA[<p>Well, after a day and a night of programming my first release of the php classes that can be used to connect to the <a href="http://developer.linkedin.com">LinkedIn Api</a> . I have used the Pecl lib of <a title="Pecl Oauth lib" href="http://pecl.php.net/package/oauth">Oauth</a> to connect to the Api. It is easy to install and good documentation on the <a href="http://www.php.net">php.net</a> site.</p>
<p>Download <a title="Download php linked in " href="http://www.linkedphp.com/files/phpLinkedIn.0.1.zip">phpLinked.zip</a></p>
<p>I have created three classes, in combination with an example and a config file.</p>
<p>First the config file</p>
<pre class="brush: php;">

define('CALLBACK_URL', 'Here your callback url');
define('BASE_API_URL', 'https://api.linkedin.com');

define('REQUEST_PATH', '/uas/oauth/requestToken?oauth_callback=' . urlencode(CALLBACK_URL));
define('AUTH_PATH', '/uas/oauth/authorize');
define('ACC_PATH', '/uas/oauth/accessToken');

define('CUSTOMER_KEY', 'Here your customer key');
define('CUSTOMER_SECRET', 'Here your customer secret');

$profileFields = array('&lt;here the profile fields you want to select');
</pre>
<p>I think pretty simple.</p>
<p>The class Request.php is the heart of the connection. This class is responsible for the startup &amp; authorisation of the connection to linkedIn api.</p>
<p>The profile.php  and the connection.php are the model classes for the return values of the api.</p>
<p>Within the request class I use simplexml to itterate thru the returned xml of the api.</p>
<p>Pleasae a have a try and ask if you have any questions. Also requests of new features are welcome.</p>
<p>W</p>
<form class='donate' method='post' action='https://www.paypal.com/cgi-bin/webscr'>		<input type='hidden' value='' name='amount'/>		<input type='hidden' value='_xclick' name='cmd'/>		<input type='hidden' value='wpeereboom@developmentit.com' name='business'/>		<input type='hidden' value='Donate for me' name='item_name'/>		<input type='hidden' value='1' name='no_shipping'/>		<input type='hidden' value='http://www.linkedphp.com' name='return'/>		<input type='hidden' value='http://www.linkedphp.com' name='cancel_return'/>		<input type='hidden' value='EUR' name='currency_code'/>		<input type='hidden' value='' name='page_style'/>		<input type='hidden' value='0' name='tax'/>		<input type='image' alt='PayPal - The safer, easier way to pay online' name='submit' style='border: 0pt none ;' src='https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif'/></form>
]]></content:encoded>
			<wfw:commentRss>http://www.linkedphp.com/2009/11/26/first-release-classes-to-connect-with-php-to-linkedin-api/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>LinkedIn starting public API</title>
		<link>http://www.linkedphp.com/2009/11/26/hello-world/</link>
		<comments>http://www.linkedphp.com/2009/11/26/hello-world/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 15:02:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Api]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.linkedphp.com/?p=1</guid>
		<description><![CDATA[Finally, after a long period of waiting it&#8217;s finally there, the LinkedIn API. And at first sight, not so bad. A nice authentication model with Oauth. Although it takes some time for the &#8220;handy developer around the corner&#8221; the find out what tokens and secret keys of Oauth are for.

The site for the development community [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, after a long period of waiting it&#8217;s finally there, the LinkedIn API. And at first sight, not so bad. A nice authentication model with Oauth. Although it takes some time for the &#8220;handy developer around the corner&#8221; the find out what tokens and secret keys of Oauth are for.</p>
<p><img class="alignnone size-medium wp-image-6" title="blog_mods" src="http://www.linkedphp.com/wp-content/uploads/2009/11/blog_mods-300x178.png" alt="blog_mods" width="300" height="178" /></p>
<p>The site for the development community is also really shaken up. A nice Forum with offcource LinkedIn integration for all your questions about the api with 2 dedicated mods. Beside the forum a good description of the api and a default blog for the moderators to communicate to the community.</p>
<p><img class="alignnone size-medium wp-image-7" title="registerapi" src="http://www.linkedphp.com/wp-content/uploads/2009/11/registerapi-300x178.png" alt="registerapi" width="300" height="178" /></p>
<p>After a short view of the api documentation I was wondering how the application registration process would take me to. So my first application was born after a few minutes. Didn&#8217;t complete all fields at once, first create the app. All pretty straight forward.</p>
<p>I will try to start this night for a good example class and share with you.</p>
<p>Keep in contact</p>
<p>w</p>
<form class='donate' method='post' action='https://www.paypal.com/cgi-bin/webscr'>		<input type='hidden' value='' name='amount'/>		<input type='hidden' value='_xclick' name='cmd'/>		<input type='hidden' value='wpeereboom@developmentit.com' name='business'/>		<input type='hidden' value='Donate for me' name='item_name'/>		<input type='hidden' value='1' name='no_shipping'/>		<input type='hidden' value='http://www.linkedphp.com' name='return'/>		<input type='hidden' value='http://www.linkedphp.com' name='cancel_return'/>		<input type='hidden' value='EUR' name='currency_code'/>		<input type='hidden' value='' name='page_style'/>		<input type='hidden' value='0' name='tax'/>		<input type='image' alt='PayPal - The safer, easier way to pay online' name='submit' style='border: 0pt none ;' src='https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif'/></form>
]]></content:encoded>
			<wfw:commentRss>http://www.linkedphp.com/2009/11/26/hello-world/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

