3

我已经完成了LinkedIn-iphone API的授权步骤,应用程序来截图:


在哪里使用 LinkedIn PIN

但是“关闭”按钮没有响应,并且没有在哪里使用授权的 PIN。

因为它没有最终授权,所以方法如

- (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??"];
}

别跑。

所以 LinkedIn API 卡在那里。

请问有人找到问题和解决方法吗?

4

2 回答 2

5

该应用程序将要求您从 LinkedIn 填写您的 API 和密钥。您的应用应指定为移动应用,并且 OAuth 重定向 URL必须设置为: http://linkedin_oauth/success

于 2010-10-19T14:51:42.760 回答
1

当我转到 LinkedIn Auth 屏幕时,我看到了 Linkedin 屏幕的截断视图。

我在 LinkedIn 网站的应用程序中输入了 OAuth 重定向 URL。我还将该应用程序标识为移动应用程序。

最好的问候, Somnath

于 2011-01-12T02:24:20.033 回答