-1

I have apps in Linkedin and this apps have r_basicprofile,
r_emailaddress, rw_company_admin and w_share. And I have config owners linkedin

        linkedin:
        type:           linkedin
        client_id:      "%linkedin_app_id%"
        client_secret:  "%linkedin_app_secret%"
        scope:          "r_emailaddress"

and I dump respons

 #response: array:4 [▼
"emailAddress" => "*****@gmail.com"
"formattedName" => "Ivan Shuba"
"id" => "*****"
"pictureUrl" => "https://media.licdn.com/mpr/mprx/0_OCZwJKsgekwl-EEy-125jtryenwltHzrUNawpkjy2tyrcZqgRQa5BFrgoiQuNd6j-C2L-C0j3tuKAu4ABAgBAktAktuAAuKjBAgeV5bp7PMgRswTR8I6sAWDXFn3ZuF2OtJbgBD5pKW"

But I need skils in Linkedin, I read for r_fullprofile, but my apps not have this scope. Help please

Rahul Gupta
  • 46,769
  • 10
  • 112
  • 126
shuba.ivan
  • 3,824
  • 8
  • 49
  • 121
  • That scope is no longer available to the public. You'd have to sign up to be a LinkedIn partner to access that information: https://developer.linkedin.com/partner-programs/apply – Justin Kominar Jun 02 '15 at 22:27
  • thanks, I write form for partner. Now wait for answer. I hope I'll get a positive answer – shuba.ivan Jun 03 '15 at 20:03

1 Answers1

0

Starting from May 12, 2015, Linkedin has limited the open APIs.

Access to r_fullprofile requires that you apply for and are granted access to this information from LinkedIn.

The following endpoints are available for general use:

  • Profile API — /v1/people/~
  • Share API — /v1/people/~/shares
  • Companies API — /v1/companies/{id}

If your application is currently using any other API services (e.g. Connections, Groups, People Search, Invitation, Job Search, etc.) you will have to apply to become a member of a relevant Partner Program that provides the necessary API access to continue to leverage any of the endpoints that are not listed above.

Check out this link for the list of API changes that were announced.

Rahul Gupta
  • 46,769
  • 10
  • 112
  • 126