How can i get profile URL from linkedIn API V2 (api.linkedin.com/v2)? Requested &scope=r_emailaddress%20r_liteprofile response have only firstname,lastname,id and profile_picture before v2 we were able to find out profile URL from id (example: https://www.linkedin.com/profile/view?id=$ID ) but now this shows profile not found error and doesn't work. i have gone through many links and read LinkedIn documentation but didn't find the right solution moreover i have read on stackoverflow linkedIn don't recommend r_fullprofile permission just for vanity name is this correct ? what should i do to get profile URl from linkedin?
How to get profile URL from linkedIn API V2?
6.4k Views Asked by shafaq ahsan At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in OAUTH-2.0
- Not getting refresh token with google oauth2
- SoundCloud Authentication Consistently Returns 401 invalid_grant For Some Users
- How can I share Azure Active Directory authentication between server side and client script?
- OAuth2 and API Json request not working with jQuery Call
- Flask-Restful, oauth, and Salesforce
- Bearer token in MVC controller to access Web API
- Revoking OAuth tokens in Mule
- how to signup user using google-plus integradation in web?
- Need to run getAuthToken twice before receiving access token, why?
- chrome.identity.getAuthToken and refresh token?
- dropbox api authentication (Error: [400] 'invalid_client')
- Retrieve Google Sites's Domain Index feed using OAuth 2.0 with Service Account
- hello.js: Is it possible to set the provider's settings dynamically?
- How to share developer account at LinkedIn
- Linkedin Unsupported POST target
Related Questions in LINKEDIN-API
- We need rw_nus and r_network scope permissions again, is it even possible
- LinkedIn API returns Positions without Title
- LinkedIn Login Screen Timeout on Mobile Browser
- How to know if Linkedin user is admin of his company on LinkedIn?
- LinkedIn API: Share without submitted URL
- LinkedIn API feeds
- How to auto-fill the linkedin advanced search current company using script in console?
- LinkedIn Group API changes
- Undocumented error with LinkedIn oAuth API
- LinkedIn iOS SDK is not working properly in iOS 8
- How to share developer account at LinkedIn
- Linkedin Unsupported POST target
- Linked in share and hashbang url
- linkedin company search API multiple facets?
- "Member 0 does not have permission to get company" error when trying to access LinkedIn company updates
Related Questions in SPRING-SOCIAL-LINKEDIN
- Updating my SpringSocialLinkedIn version prevent it from working, why?
- Can't get linkedin profiles summaries using Spring social
- Is there any way to get people whose companyId!=6464(sample id)?
- Spring Social LinkedIn: Is there an api available to retrieve user's projects?
- Mixing Spring Social versions for different providers
- AdCreativesV2 Batch GET API returns 400 BAD REQUEST - "Cannot process request involving multiple routing entities"
- How to retrive my connection's information from Linkedin via REST api
- Cannot create LinkedIn Controller bean with Spring Social
- How to get profile URL from linkedIn API V2?
- spring-social-linkedin only retrieved two current positions and no past positions
- How to fetch the messaging of linkedin user
- SSLHandshakeException when authenticating with Linkedin
- LinkedIn permission approval not working?
- Get courses from Spring Social LinkedIn API
- linkedin API person-activities returns 201 but not able to find the updates in web UI
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can't with the
scopeyou mentioned.You need to add
r_basicprofileto the scope to request thevanityName.A few considerations:
r_basicprofileavailable, you can check that by going here, then select your app, then go to the "Auth" tab, and after check the "Permissions" section.r_basicprofileto thescopequery paramvanityNameproperty, then all you need to do is concatenate withhttps://www.linkedin.com/in/to have the full profile URL as in "https://www.linkedin.com/in/ + vanityName"r_basicprofilepermissions to any app, you need to request it to LinkedIn and they might not give it to you.