linkedin-api

How to get Linkedin recommendations using Linkedin API?

我的未来我决定 提交于 2019-12-23 12:26:05
问题 How to get LinkedIn recommendations in PHP? How to retrieve educations, recommendationsReceived, skills, twitterAccounts and user profile data from linkedIn API? How to Output this type get: (this is Dummy Data) { "educations": { "_total": 1, "values": [ { "degree": "MCA", "endDate": { "year": 2010 }, "fieldOfStudy": "English", "id": 68487593, "schoolName": "Computer Studies", "startDate": { "year": 2007 } } ] }, "firstName": "Firstname", "id": "k4AWESnyv", "recommendationsReceived": { "

Commenting on a LinkedIn post using REST API returning 500

泪湿孤枕 提交于 2019-12-23 10:02:52
问题 I have a linkedin company page.I am trying to post a comment on an already existed post of that page via Linkedin Rest API. Below are the request details : HTTP METHOD : POST URL : https://api.linkedin.com/v2/socialActions/urn:li:activity:{activity-id}/comments HEADERS : Authorization, Content-Type BODY : {"actor": "urn:li:organizationBrand:<org id>", "message": { "attributes": [], "text": "This is a comment" }} The above request is throwing me the below error : {"message": "com.linkedin

Create a image share for linkedin api v2 by php

泪湿孤枕 提交于 2019-12-23 03:29:14
问题 I write a code which share a post on linkedin account. My code is working fine for text post but facing issue in image post. I tried and search a lot but not find any success for now. Here is my code for image share in linkedin V2 api. I follow this doc https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/share-on-linkedin?context=linkedin/consumer/context /*1.Register your image to be uploaded.*/ $imageData = array ( 'registerUploadRequest' => array ( 'recipes' => array

LinkedIn Rich Media Shares API error 'Not enough permissions to access media resource'

无人久伴 提交于 2019-12-22 18:06:55
问题 I have LinkedIn app (Created from here https://www.linkedin.com/developer/apps) with scope of r_basicprofile, r_emailaddress, rw_company_admin, w_share After completing auth process successfully i got access token from linkedin api and it's working to get authenticated user information. But while i try to use Rich Media Shares API then it's not working for me I am getting following error { "serviceErrorCode":100, "message":"Not enough permissions to access media resource", "status":403 } Here

LinkedIn historical-follow-statistics API for current day does not match current follower count

老子叫甜甜 提交于 2019-12-21 06:01:31
问题 Hitting the Historical Follower Count API documented at https://developer.linkedin.com/docs/company-pages#historical_followers URL is: https://api.linkedin.com/v1/companies/{id}/historical-follow-statistics?time-granularity=day&start-timestamp=1501718400000&end-timestamp=1501718400000&format=json Those timestamps are both for today. Response is: [ "_total" => 1, "values" => [ [ "organicFollowerCount" => 932, "paidFollowerCount" => 84, "time" => 1501718400000.0, "totalFollowerCount" => 1016, ]

LinkedIn V2 API permission for reading socialActions and Shares

ε祈祈猫儿з 提交于 2019-12-21 03:58:11
问题 I get no permissions error when i make the following linkedIn V2 Api call https://api.linkedin.com/v2/socialActions/{share URN}?oauth2_access_token={access token} LinkedIn Api Response { serviceErrorCode: 100, message: "Not enough permissions to access /socialActions/{target} GET ", status: 403 } These are the Default application Permissions can someone please help on this. (Need to make this work on V2 api) 回答1: Your API call will return a 403 Forbidden error if you do not have the

Linkedin Member Profile Plugin not working for some profiles

谁说我不能喝 提交于 2019-12-20 12:37:24
问题 We have a webpage that shows members of a team and it includes references to everyone's LinkedIn profile. We have used the Member Profile Plugin to show a preview of the profile. Now we have a new team member and for some reason the plugin does not show her profile. The problem is reproducible on LinkedIn's own "Member Profile Plugin Generator" page. (Cannot post link as StackOverflow allows only 2 - use Google to find it.) If you use the profile URL: https://ee.linkedin.com/in/stina-pentj%C3

Why does LinkedIn v2 Share API give not enough permissions error on any v2/shares endpoint?

拟墨画扇 提交于 2019-12-20 10:29:08
问题 When I make a call to any v2 LinkedIn share API endpoint such as https://api.linkedin.com/v2/socialActions/{share URN}?oauth2_access_token={access token} I get a response saying "Not enough permissions to access /socialActions/{target} GET ". Our application was recently given access to marketing API which is how I got the r_ad_campaigns permission. The share API documentation gives no explanation of why this error would occur or what permissions I may be missing. Has anyone been able to

Not enough permissions to access /me GET

一个人想着一个人 提交于 2019-12-20 02:31:04
问题 I got the Access Token (with scope: r_basicprofile r_emailaddress w_share) try with r_fullprofile too. i'm based on this docs to authorize: https://developer.linkedin.com/docs/oauth2 Next i make request to the https://api.linkedin.com/v2/me endpoint curl -H "Authorization: Bearer ACCESS_TOKEN" -H "Accept: application/json" -H "Content-Type: application/json" Get response: { "serviceErrorCode": 100, "message": "Not enough permissions to access /me GET ", "status": 403 } Realy dont know why?

NER model to recognize Indian names

主宰稳场 提交于 2019-12-19 04:25:50
问题 I am planning to use Named Entity Recognition (NER) technique to identify person names (most of which are Indian names) from a given text. I have already explored the CRF-based NER model from Stanford NLP, however it is not quite accurate in recognizing Indian names. Hence I decided to create my own custom NER model via supervised training. I have a fair idea of how to create own NER model using the Stanford NER CRF, but creating a large training corpus with manual annotation is something I