We need rw_nus and r_network permissions again, is this possible

Our site uses permissions from rw_nus

and r_network

from Linkedin to function properly. We received feeds from Linkedin and were able to post comments and reviews. But now we get the following error:

errors = invalid_scope & error_description = + Your app + has + not + was + allowed + for + in + volume +% 22r_fullprofile% 22r_network% 22rw_nus

We have found the following link , which states:

Linkedin depreciates rw_nus from API

Is it possible to get these permissions again or again? If so, how to get permission for them?

+3


source to share


1 answer


Revoke permission rw_nus

:

Member permission rw_nus

will expire on May 12, 2015. Changes to Linkedin API . If your app uses content on behalf of a LinkedIn member, your app will require the member's permission . w_share

The new permission w_share

will grant you permission to share content on LinkedIn like you could previously, however you will no longer be able to read shared content from a user's LinkedIn feed using the API.

So if you used the following link to request authorization code

https://www.linkedin.com/uas/oauth2/authorization?scope=rw_nus

      

Now you have to use ue -

https://www.linkedin.com/uas/oauth2/authorization?scope=w_share

      



How to fix invalid realm authorization error:

To fix this issue, make sure that the scope parameter in the authorization workflow no longer prompts for any of the following access rights:

r_fullprofile, r_network, r_contactinfo, rw_nus, rw_groups, w_messages

      

To access these permissions, you will need to apply to become a member of the eligible Affiliate Program that provides the required API access to the required endpoints.

So, apply affiliate status to LinkedIn by explaining what integration is and how it works. If it meets the criteria , we feel they provide value to members, developers, and LinkedIn , then one or more endpoints will remain open to that application, and this application ONLY.

See link for details .

+10


source







All Articles