Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have done the authorisation step of LinkedIn-iphone API, and the app comes to the screenshot:


where to use the LinkedIn PIN

But the 'close' button does not respond, and no where to use the authorised PIN.

Because it is not finally authorised, the methods like

- (void)linkedInEngine:(RDLinkedInEngine *)engine requestSucceeded:(RDLinkedInConnectionID *)identifier withResults:(id)results {
 NSLog(@"++ LinkedIn engine reports success for connection %@\n%@", identifier, results);
}

- (void)linkedInAuthorizationControllerSucceeded:(RDLinkedInAuthorizationController *)controller {
 NSLog(@"Authentication succeeded.");
 NSLog(@"Fetching current user's profile on connection %@", [controller.engine profileForCurrentUser]);
 [rdEngine updateStatus:@"when can you update me??"];
}

do not run.

So the LinkedIn API is stuck there.

Anyone find the problem and solution please?

share|improve this question

2 Answers

up vote 5 down vote accepted

The application will require you to fill in your API and Secret keys from LinkedIn. Your app should be designated as a mobile application, and the OAuth Redirect URL must be set to: http://linkedin_oauth/success

share|improve this answer
1  
I have the API and secret keys ("authorized GRACENav" in the screenshot). Could you show the example code where I should put the "linkedin_oauth/success"; as OAuth Redirect URL in my .m please? – lionfly Oct 19 '10 at 20:31
4  
Thanks I got what you said. The OAuth Redirect URL should be put in the application on LinkedIn web site, not in the iPhone App itself. Now the [rdEngine updateStatus:@"string"] can update LinkedIn activity. But seems the status only allow 140 characters like Twitter. – lionfly Oct 21 '10 at 13:09

When I go to the LinkedIn Auth Screen, I get a truncated view of the Linkedin screen.

I have entered The OAuth Redirect URL in the application on LinkedIn web site. I am also identifying the app as a mobile app.

Best Regards, Somnath

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.