You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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(
'api_key' => '_',
'api_secret' => '_**',
'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);
The text was updated successfully, but these errors were encountered: