Deprecated TransactionReceipt

前端 未结 3 743
故里飘歌
故里飘歌 2020-12-14 06:39

I am using this code for in-app purchases, took it from RaywernderLich\'s tutorial.

// Encode the receiptData for the itms receipt verification POST requ         


        
3条回答
  •  眼角桃花
    2020-12-14 07:27

    NSURL *receiptURL = [[NSBundle mainBundle] appStoreReceiptURL];
    NSData *receipt = [NSData dataWithContentsOfURL:receiptURL];
    if(!receipt) {
     /* No local receipt -- handle the error. */ 
    }
    NSString *jsonObjectString = [receipt base64EncodedString];
    

提交回复
热议问题