Questions tagged [linkedin-j]
83 questions
0
votes
1 answer
Getting Connections of a person by id in LinkedIn
I need to get the connections of a user whose id is yZTcaxINNv. I use linkedin-j and the code looks something like this
import com.google.code.linkedinapi.client.LinkedInApiClient;
import…

Rakshith
- 644
- 1
- 8
- 24
0
votes
1 answer
Processing pagination in LinkedIn API
I'm trying to retrieve all of my network updates using the linkedin-j API. I can fetch the first 10 updates, but do not know how to retrieve any more.
The following code retrieves the first 10 updates:
Network network =…

jsmos
- 497
- 2
- 5
- 15
0
votes
1 answer
Android Linkedin-J not posting network updates
I'm trying to post a network update using Linkedin-J.
Here is my code:
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(linkedin_app_id, linkedin_app_secret);
final LinkedInApiClient client =…

KLiFF
- 382
- 2
- 18
0
votes
1 answer
Linked-j.jar, getConnections() method return null alway
I am using linkedin-j.jar to get the get the LinkedIn Profile using getProfileById method but I am not able to fetch the Connections which comes from getConnection() method, it is always return null.
Can any one help me to come out this issue, below…

user3336611
- 1
- 2
0
votes
1 answer
How to use linked-in j library to get current user details
I am using linked-in j library.
I am able to connect with linked-in but when i go for details for the profile of current user then i get whole Person object but this object only contain the values of first name, last name and headline.And other…

Vaibhav Pandey
- 19
- 2
0
votes
0 answers
Linkedin:recepient api request cannot be null
I am trying to send an invitation, so first I look for the person using this:
Person profile = client.getProfileById(getThirdSocial("linkedin"));
then I get the person and I call the method:
client.sendInviteToPerson(recepient, subject,…

Jave
- 46
- 3
0
votes
2 answers
Linkedin auth token generated from android device is not working on web server
I am trying to get LinkedIn User Access token using linkedin-j-android library. I am able to get a Valid auth token (60 days validity) and secret.
I am able to fetch all the user details using that auth token in the android device but when I am…

Jambaaz
- 2,788
- 1
- 19
- 30
0
votes
1 answer
linkedin-j not returning public profile url
I'm integrating the linkedin-j library with my Android app. I have successfully setup OAuth, and I'm able to retrieve the user's profile:
LinkedInApiClient linkedinApiClient = getLinkedinApiClient(accessToken);
Person profile =…

Simian
- 1,622
- 3
- 17
- 32
0
votes
1 answer
Unable to get request token from linked-j on Android
I'm using the linkedin-j library in my Android application. I'm trying to retrieve a request token for OAuth authentication:
LinkedInOAuthService linkedinOAuth = LinkedInOAuthServiceFactory.getInstance().createLinkedInOAuthService(
…

Simian
- 1,622
- 3
- 17
- 32
0
votes
1 answer
LinkedIn-J | Not able to get number of members for a Group
I am using LinkedIn-j to get information from linkedIn for a group based on group Id, the problem is that I am not able to get total number of members for the group. Following in the code that I have written. Here Group object does not have any…

Rupesh
- 2,627
- 1
- 28
- 42
0
votes
1 answer
Cannot fetch LinkedIn shared connections
I am currently working on a Grails application (using Groovy which is similar to Java), where a user can view the profile of other users. On user's profile page, I need to show the LinkedIn connections shared between that user and the viewer's…

Manish Kapoor
- 488
- 3
- 16
0
votes
1 answer
How to renew linkedin oauth access token using linkedin-j?
I use LinkedIn-J lib to allow the users of my app to login to their LinkedIn account from within my app so that they can share posts from my app to LinkedIn. That all works great.
Now with the new LinkedIn policy where the access token expires in 60…

Silent User
- 2,657
- 7
- 29
- 36
0
votes
1 answer
Convert json to Object
I have to convert this josn to object
{
"_count": 10,
"_start": 0,
"_total": 22,
"values": [
{
"isCommentable": true,
"isLikable": true,
"isLiked": false,
"numLikes": 0,
"timestamp": 1372172949945,
…

jackyesind
- 3,343
- 14
- 47
- 74
0
votes
1 answer
linkedinj get old network updates
I am using linkedinj. I want to get all the old updates of my first level connections. I tried to set the date but it displays only the recent only
Date startDate = new SimpleDateFormat("MM/dd/yy").parse("05/18/05");
Date endDate =…

jackyesind
- 3,343
- 14
- 47
- 74
0
votes
0 answers
Search results differ in Linkedin API and site
I am using linkedinj java API. I search the key word android framework using the keyword search in API. It shows 110 results totally but when i search the same word in linkedin site it has 5616 results. I am confused why this difference occurs.
…

user2196474
- 319
- 1
- 5
- 15