• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - Mashape Objective-C for iOS - 对 JSON 对象的 MashapeResponse

[复制链接]
菜鸟教程小白 发表于 2022-12-13 16:26:08 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在通过 Mashape.com 使用一个名为 Lamda (https://www.mashape.com/lambda) 的人脸识别 API。

当我从识别请求中获取结果时,它会给我一个“MashapeRespose”对象。

我无法将此 MashapeResponse 或其任何部分转换为 JSON 对象。

当我打电话时

NSLog(@"des=%@", [response body]);

我把这个打印出来

{
    images =     (
        "http://api.lambdal.com/static/uploads/img05Xv8N.png"
    );
    photos =     (
                {
            height = 241;
            tags =             (
                                {
                    attributes =                     (
                                                {
                            confidence = "0.7097208087892503";
                            gender = male;
                        }
                    );
                    center =                     {
                        x = 95;
                        y = 98;
                    };
                    confidence = "0.978945010372561";
                    "eye_left" =                     {
                        x = 114;
                        y = 84;
                    };
                    "eye_right" =                     {
                        x = 76;
                        y = 85;
                    };
                    height = 112;
                    "mouth_center" =                     {
                        x = "96.5";
                        y = "134.5";
                    };
                    "mouth_left" =                     {
                        x = 74;
                        y = "134.5";
                    };
                    "mouth_right" =                     {
                        x = 119;
                        y = "134.5";
                    };
                    nose =                     {
                        x = 94;
                        y = 113;
                    };
                    tid = 31337;
                    uids =                     (
                                                {
                            confidence = "0.323";
                            prediction = manuel;
                            uid = "manuel@MICClientele";
                        },
                                                {
                            confidence = "0.194";
                            prediction = olivier;
                            uid = "olivier@MICClientele";
                        },
                                                {
                            confidence = "0.161";
                            prediction = sean;
                            uid = "sean@MICClientele";
                        },
                                                {
                            confidence = "0.161";
                            prediction = damien;
                            uid = "damien@MICClientele";
                        },
                                                {
                            confidence = "0.065";
                            prediction = egle;
                            uid = "egle@MICClientele";
                        },
                                                {
                            confidence = "0.065";
                            prediction = gareth;
                            uid = "gareth@MICClientele";
                        }
                    );
                    width = 112;
                }
            );
            url = "http://api.lambdal.com/static/uploads/img05Xv8N.png";
            width = 200;
        }
    );
    status = success;
} 

显然这不是有效的 JSON。

这是 MashapeResponse.h 的内容

#import "MashapeResponse.h"

@interface MashapeResponse ()
@property (readwrite, retain) NSData* rawBody;
@property (readwrite) NSDictionary* headers;
@property (readwrite) int code;
@end

@implementation MashapeResponse

@synthesize rawBody;
@synthesize headers;
@synthesize code;
@synthesize body;

-(MashapeResponse*)initWithResponseint)httpCode headersNSDictionary*) httpHeaders rawBodyNSData*) httpRawBody {
    self = [super init];
    [self setCode:httpCode];
    [self setHeaders:httpHeaders];
    [self setRawBody:httpRawBody];
    return self;
}

@end 

有没有人能够在 iOS 上使用 Mashape 并能够转换成 JSON 对象?

我可以使用子字符串来获取我想要的信息,但这不是它应该如何工作,因为文档声明它应该是一个 json 响应..

至少可以说非常沮丧......

问候 达米安

PS。我已经向 Mashape 支持发送了这个问题,所以如果我在有人在这里发布答案之前得到解决方案,我会将其添加到这篇文章中。

编辑:

当我打电话时

id status = [response valueForKey"status"];
NSLog(@"status=%@", [status description]);
id photos = [response valueForKey"photos"];
NSLog(@"photos=%@", [photos description]);

我得到了这个异常

2012-09-20 16:53:20.609 Clientele[5160:707] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<MashapeJsonObjectResponse 0x3d2810> valueForUndefinedKey:]: this class is not key value coding-compliant for the key status.'



Best Answer-推荐答案


首先感谢 Dcritelli 对这个问题的帮助..

我收到了 Mashape 对我的问题的回复,他们向我发送了这封电子邮件作为回复。


Hi Damien,

The [response body] method already returns a parsed JSON object. If you need the raw response in bytes (that is a NSData* object), you can get it by invoking [response rawBody]. You can convert a NSData* to NSString* if you want.

Given that [response body] returns the parsed JSON object, for example to get the "url" property of the first photo in the "photos" array, you would write:

 NSArray* photos = [[response body] objectForKey"photos"];
 NSDictionary* firstPhoto = [photos objectAtIndex:0];
 NSString* url = [firstPhoto objectForKey"url"];
 NSLog(@"URL of the first photo is: %@", url);

We apologize if the docs were confusing, we updated them and you can read the new revision here: https://www.mashape.com/docs/consume/objectivec

Let us know if you need additional help, Cheers


因此,他们不仅回复了解决方案,还更新了文档。

向 Mashape 致敬。

问候 达米安

关于ios - Mashape Objective-C for iOS - 对 JSON 对象的 MashapeResponse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12514977/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap