简体   繁体   中英

Failed to fetch full profile details from LinkedIn API

I tried to fetch full profile details from LinkedIn API. I referred a sample app also. In my app I tried,

[LISDKSessionManager createSessionWithAuth:[NSArray arrayWithObjects:LISDK_FULL_PROFILE_PERMISSION, LISDK_EMAILADDRESS_PERMISSION,  nil] state:nil showGoToAppStoreDialog:YES successBlock:^(NSString *returnState) {
    [self.delegate didSuccessfullyLogIntoLinkedIn];
} errorBlock:^(NSError *error) {
    [self.delegate fetchingFailedWithError:error];
}];

This code gives me an error

The operation couldn't be completed. (LISDKAuthError error 5.)

But in the sample app which is provided by the LinkedIn, This same code is working. I went through my app authentications. It has only following fields. I think the problem is, In this list there is no r_fullprofile field.

在此处输入图片说明

Is this the problem? Is it possible to add r_fullprofile field to this list?

Although basic access gives you only 4 fields, an answer is "Yes, it is possible". If you subscribe to LinkedIN Partnership Programs .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM