Reputation: 130
I am using linked connection API in my application and trying to get newly added connection of authenticate user. But it always return all connections of authenticate user.
Here is my reference link:
http://developer.linkedin.com/documents/connections-api#
and API call is:
It should return modified and new connection while its return all connections. Is there problem with my API Calls?
Upvotes: 2
Views: 299
Reputation: 1710
Try in this way
$miliseconds= $sconds*100;
and send that miliseconds in query string
Upvotes: 1
Reputation: 1285
The API requires milliseconds since epoch, not seconds. You're asking for all connections since 1/17/1970 12:43:34 AM. :)
Upvotes: 0