at this far the authorisation went well.
So now I can get long-lived access_token for my webapp users and store these.
So next I'm trying to get my first post (acting as one of my users)
'cause there is little documentation, I try this, but getting:
Mutiple authentication schemes detected
Nice class,
at this far the authorisation went well. So now I can get long-lived access_token for my webapp users and store these.
So next I'm trying to get my first post (acting as one of my users) 'cause there is little documentation, I try this, but getting: Mutiple authentication schemes detected
Any help out there? TIA!!
cheers Harry
$li = new LinkedIn( array( 'apikey' => '****', 'apisecret' => '******', 'callback_url' => 'http://mydomain.nl/socnet.php' ) ); $li->setAccessToken($storedusertoken);
$post = array( 'comment' => 'Test social Share', 'content' => array( 'title' => 'Test Title', 'description' => 'test description', //Maxlen(255) 'submitted_url' => 'http://tinyurl.com/z44rtdzo3f' ), 'visibility' => array( 'code' => 'anyone' )); $post = $li->post('people/~/shares', $post);