oauth2-linkedin icon indicating copy to clipboard operation
oauth2-linkedin copied to clipboard

LinkedIn Provider for the OAuth 2.0 Client

Results 22 oauth2-linkedin issues
Sort by recently updated
recently updated
newest added

! Explanation: If you create linkedIn app now, you can't choose product "Sign In with LinkedIn" with scopes ['r_liteprofile', 'r_emailaddress']. Also you don't have credentials for access /me endpoint. https://learn.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/sign-in-with-linkedin...

Since a few days I get a PHP warning when someone tries to login/signup with LinkedIn: PHP Warning: Undefined array key "storageSize" in /vendor/league/oauth2-linkedin/src/Provider/LinkedInResourceOwner.php on line 176

This PR moves the `namespace` declaration in `LinkedInResourceOwner.php` to its own line, as per [PSR-12](https://www.php-fig.org/psr/psr-12/) Has the benefit of fixing a conflict with https://github.com/BrianHenryIE/strauss/ v0.14.1

LinkedIn’s Marketing APIs will be versioned from June 2022 and released under a new base path: https://api.linkedin.com/rest/ (https://learn.microsoft.com/en-us/linkedin/marketing/versioning?view=li-lms-2022-10) Microsoft also published a guide: https://learn.microsoft.com/en-us/linkedin/marketing/integrations/community-management/contentapi-migration-guide

Warning during email extraction: ``` E_WARNING: Undefined array key 0 In .../vendor/league/oauth2-linkedin/src/Provider/LinkedIn.php:271 ```

I am getting the response: ``` array:3 [ "serviceErrorCode" => 100 "message" => "Not enough permissions to access: POST /posts" "status" => 403 ] ``` when trying to publish a...

Hello. I'd like to know, how can I publish posts on my linkedin profile?

array_filter will preserve keys. Therefore $pictures[0] won't actually be set if you're filtering down to a key other than the first.

I'm using ```5.1.2``` and i get the following error when redirecting after the oauth login: ``` Call to undefined method League\OAuth2\Client\Provider\LinkedInResourceOwner::getLocation() ``` I've added this function and then I get...