Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $.getScript("http://platform.linkedin.com/in.js?async=true", function success() {
  2. IN.init({
  3. 'api_key': apiKey,
  4. onLoad: "onLoadedLinkedin"
  5. });
  6. });
  7.  
  8.  
  9. onLoadedLinkedin = function(){
  10. console.log('linkedin init: ok');
  11.  
  12. IN.API.Raw("groups/35920").result(function callback(result) { console.log(result);});
  13. IN.API.Raw("groups/35920/posts?count=5&start=5").result(function callback(result) { console.log(result);});
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement