iPhone 中的 LinkedIn API 响应
随着 Linkedin API 的 API 响应生效,
- (void)linkedInEngine:(RDLinkedInEngine *)engine requestSucceeded:(RDLinkedInConnectionID *)identifier withResults:(id)results {
我们如何识别即将出现的结果是针对哪个 API
Amit Battan
As API response of Linkedin API comes into function
- (void)linkedInEngine:(RDLinkedInEngine *)engine requestSucceeded:(RDLinkedInConnectionID *)identifier withResults:(id)results {
How we recognize that coming result is for which API
Amit Battan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用这种方式解决了它。
每个请求都返回 RDLinkedInConnectionID 对象
在委托方法中对应的
(RDLinkedInConnectionID *)identifier
对象中,我使用了一个字典来管理它
请求代码
委托方法中响应的代码 /em>
I solved it in this way..
Every request return
RDLinkedInConnectionID
objectand in delegate method corresponding
(RDLinkedInConnectionID *)identifier
object hereI have taken a Dictionary for managing it
Code on request
Code on response in delegate method