web-dev-qa-db-ja.com

RESTKitを使用して単純なjson POST

IOS開発に不慣れで、単純なJson POSTリクエストを作成するのに問題があります。ユーザーとパスワードを含むNSDictionaryがあり、それらの値をJsonとしてに送信したいと思います。サーバーと応答を取得します。restkitを使用せずに動作していましたが、RestKitを使用して同じことを実現する方法がわかりません。また、必要なものの良い例を見つけることができません。

- (bool) login{

    NSMutableDictionary* params = [[NSMutableDictionary alloc] init];
    [params setValue:self.email forKey:@"email"];
    [params setValue:self.password forKey:@"password"];    

    NSMutableDictionary* rpcData = [[NSMutableDictionary alloc] init];
    [rpcData setValue:@"2.0" forKey:@"jsonrpc"];
    [rpcData setValue:@"authenticate" forKey:@"method"];
    [rpcData setValue:@"" forKey:@"id"];
    [rpcData setValue:params forKey:@"params"];

    [[RKClient sharedClient] post:@"/api/rpc/" params:rpcData delegate:self];
    return nil;
}

サーバーは次のようなJsonを期待しています:

{
    jsonrpc : '2.0',
    method : 'authenticate', // method name goes here
    params : {  // params are method-specific
        email : '[email protected]',
        password : 'secret'
    },
    id : 2  // The id can be anything, it will be sent back with the response
}

RestKitにJsonパーサーが含まれていることを理解しましたが、rpcDataディクショナリを解析する方法に関するドキュメントが見つかりません。外部ライブラリを使用する必要がありますか?.

今のところサーバーとの通信は問題ありませんが、期待どおりの送信は行っていません。私の辞書は「key = value?key2 = value2 ...」のようにマッピングされています。これは非常にばかげた質問ですが、私は立ち往生しています。

更新

これを書いた時点では機能していましたが、Restkitが更新されているため、これが機能するかどうかはわかりません。ドキュメントを確認してください

これが私の問題の解決策です。私がやっていることは、サービスを呼び出す必要があるときにRPCAPIを操作するのに理想的です。

1.-最初にオブジェクトでRestkitとRKRequestSerializationをインポートする必要があります。これは非常に重要です。

#import <RestKit/RestKit.h>
#import <RestKit/RKRequestSerialization.h>

@interface myObject : NSObject <RKRequestDelegate,RKObjectLoaderDelegate>

2.-投稿を送信するログイン機能は次のとおりです。

- (void) login:(NSString *)username :(NSString *)password{

    RKClient *myClient = [RKClient sharedClient];
    NSMutableDictionary *rpcData = [[NSMutableDictionary alloc] init ];
    NSMutableDictionary *params = [[NSMutableDictionary alloc] init];

    //User and password params
    [params setObject:password forKey:@"password"];
    [params setObject:username forKey:@"email"];

    //The server ask me for this format, so I set it here:
    [rpcData setObject:@"2.0" forKey:@"jsonrpc"];
    [rpcData setObject:@"authenticate" forKey:@"method"];
    [rpcData setObject:@"" forKey:@"id"];
    [rpcData setObject:params forKey:@"params"];

    //Parsing rpcData to JSON! 
    id<RKParser> parser = [[RKParserRegistry sharedRegistry] parserForMIMEType:RKMIMETypeJSON];
    NSError *error = nil;
    NSString *json = [parser stringFromObject:rpcData error:&error];    

    //If no error we send the post, voila!
    if (!error){
        [[myClient post:@"/" params:[RKRequestSerialization serializationWithData:[json dataUsingEncoding:NSUTF8StringEncoding] MIMEType:RKMIMETypeJSON] delegate:self] send];
    }
}
18
clopez

私も同じ問題を抱えていました、そしてこれが私にとってそれを解決したものです。私のシナリオでは、RKRequestにのみアクセスしたかったことに注意してください。

NSDictionarty *dict
NSError *error; 
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict options:0 error:&error];

if (!jsonData) 
{
    NSAssert(FALSE, @"Unable to serialize JSON from NSDict to NSData"); 
} 
else 
{
    NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    request.params = [RKRequestSerialization serializationWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding] MIMEType:RKMIMETypeJSON];
}

私にとっての鍵は、最後の行の「MIMEType:RKMIMETypeJSON」でした。 RKRequestのみを使用したかったので、これがMIMEタイプを設定する必要がある方法でした。そうでなければ、私はポール・セザンヌの提案を使用します。

9
markhops

古いRestKitの場合

デリゲートにはおそらく次のようなものがあります。

    objectManager.serializationMIMEType = RKMIMETypeFormURLEncoded;

あなたはそれをしたい:

    objectManager.serializationMIMEType = RKMIMETypeJSON;

RestKit v.20の場合:

    // thanks  ColdLogic (from his comment)
    [objectManager setRequestSerializationMIMEType:RKMIMETypeJSON];
25
Paul Cezanne