0

私はアプリ購入アプリで作業しており、開発者サーバーで購入トランザクションの領収書を、デバイスのベンダー ID、ソフトウェアのバージョン、デバイス名、購入したい製品 ID などの他の情報とともに確認したいと考えています。

NSDictionary を使用して Json を作成していますが、追加しようとするとクラッシュします

 NSMutableArray *MainOBJ = [NSMutableArray arrayWithObjects:IDdict,deviceData,kMyFeatureIdentifier,jsonObjectString,nil]; 

ここで、IDdict はデバイス ID 文字列、deviceData はディクショナリで、名前、ソフトウェア バージョン、kMyFeatureIdentifier などのコンテンツ デバイス情報は、購入したい製品 ID NSstring です。jsonObjectString は、エンコードされたトランザクション受信文字列です。

ここに私のコードがあります

- (void)verifyReceipt:(SKPaymentTransaction *)transaction {
 
 //TODO
 // currently working on JSON to send to server .
   NSLog(@"In verifyReceipt method");

   jsonObjectString = [self encode:(uint8_t*)transaction.transactionReceipt.bytes length:transaction.transactionReceipt.length];
 // jsonObjectString=@"TESTING";

NSLog(@"Json Object encoded receipt is %@",jsonObjectString);

NSString *IDdict = [[NSString alloc ]initWithString:[UIDevice currentDevice].identifierForVendor.UUIDString]; // Device UDID

NSArray *objects = [NSArray arrayWithObjects:@"NULL",[[UIDevice currentDevice] model],[[UIDevice currentDevice] name],nil];
NSArray *keys = [NSArray arrayWithObjects:@"serial",@"constructor",@"name",nil];
NSDictionary *deviceData = [NSDictionary dictionaryWithObjects:objects forKeys:keys];  // Device information like name , device model , serial number

NSLog(@"Json question dict created");


//TODO: **It crash here**

NSMutableArray *MainOBJ = [NSMutableArray arrayWithObjects:IDdict,deviceData,kMyFeatureIdentifier,jsonObjectString,nil]; // purchased Item ID of previous item
NSMutableArray *MainKeys = [NSMutableArray arrayWithObjects:@"ID",@"device",@"video","@receiptData", nil];
NSMutableDictionary *MainDict = [NSMutableDictionary dictionaryWithObjects:MainOBJ forKeys:MainKeys]; // final string of data

NSLog(@"Json Main dict created");


NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:MainDict options:NSJSONWritingPrettyPrinted error:&error];
NSString *resultAsString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSLog(@"Purchase product Json string:\n%@", resultAsString);


ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[[NSURL alloc] initWithString:@"http://xyz/dev.php/video/verifyReceipt"]];
[request setPostValue:resultAsString forKey:@"verify"];
[request setDidFinishSelector:@selector(requestDone:)];
[request setTimeOutSeconds:120];
[request setDelegate:self];
[request setNumberOfTimesToRetryOnTimeout:2];
[request setDownloadProgressDelegate:self];
request.showAccurateProgress = YES;

「NSLog(@"Json question dict created");」を取得しました クラッシュした後のログに。私の予想されるjson形式は次のようなものです

        {
      "ID" : "E6E95901-006B-4569-8D2B-FA29A0307F80",
     "device" : {
     "name" : "iPad Simulator",
     "constructor" : "iPad Simulator",
     "serial" : "NULL"
       },
     "video" : "com.amm.happyclip.4445Video",
     "receiptData":"DSKLFKSGERPOKFLJGMZEKLEMSERLKEMZTRKGDGFLefklezkgem"
       }

エラーのスクリーンショット エラーのスクリーンショット

任意の提案、助けていただければ幸いです

文字列を返すエンコーディングメソッドと、その文字列を「jsonObjectString」に割り当てるだけです

- (NSString *)encode:(const uint8_t *)input length:(NSInteger)length {

static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";

NSMutableData *data = [NSMutableData dataWithLength:((length + 2) / 3) * 4];
uint8_t *output = (uint8_t *)data.mutableBytes;

for (NSInteger i = 0; i < length; i += 3) {
    NSInteger value = 0;
    for (NSInteger j = i; j < (i + 3); j++) {
        value <<= 8;
        
        if (j < length) {
            value |= (0xFF & input[j]);
        }
    }
    
    NSInteger index = (i / 3) * 4;
    output[index + 0] =                    table[(value >> 18) & 0x3F];
    output[index + 1] =                    table[(value >> 12) & 0x3F];
    output[index + 2] = (i + 1) < length ? table[(value >> 6)  & 0x3F] : '=';
    output[index + 3] = (i + 2) < length ? table[(value >> 0)  & 0x3F] : '=';
       
}

return [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
}
4

1 に答える 1