Post

Replies

Boosts

Views

Activity

Reply to AppData doesn't contain the same file size as the iphone storage
Thanks for the reply and the suggestion, but i a very confident that it actually shows the same as my container from Xcode because i have walked through it with my own eyes file by file and saw everything i did in my app as a user. So i "know" that this is correct and my app storage should be 463Mo. I simply wonder why my iphone storage is showing 3Go+ for my app then and this is the thing i would like to explore but i have no idea how or where to start...
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’22
Reply to Error 21002 when validating receipt
Hey ! If i had to guess, you should do the same as i did meaning convert your data to a String object before passing it to the request. I think in general you can only pass String objects in HTTP requests. The only question is : does the JS request SDK automatically converts your "dict" - "object" to String. if i remember, you can do something like : var body = {"receipt-data": token} body = str(body) then in your request (actually you have a "data" var that should be "body" in your request body.
May ’22
Reply to Cannot change INTERRUPTED PURCHASES for sandbox user
Exact same issue we have to delete the sandbox user and create a new one. Besides, enable the "Interrupt purchases for this user" has strictly no effect, my user keeps renewing his subscription every 5 minutes. When unchecking the checkbox and save changes, the "Interrupt purchase" stays "interrupted" forever...
Replies
Boosts
Views
Activity
Mar ’23
Reply to AppData doesn't contain the same file size as the iphone storage
Thanks for the reply and the suggestion, but i a very confident that it actually shows the same as my container from Xcode because i have walked through it with my own eyes file by file and saw everything i did in my app as a user. So i "know" that this is correct and my app storage should be 463Mo. I simply wonder why my iphone storage is showing 3Go+ for my app then and this is the thing i would like to explore but i have no idea how or where to start...
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to AppData doesn't contain the same file size as the iphone storage
Sorry i should not have said i have compressed it my mistake. Without compression it's 463Mo and with compression is 413 so the difference is actually almost null and not relevant here anyway you are right.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Error 21002 when validating receipt
Hey ! If i had to guess, you should do the same as i did meaning convert your data to a String object before passing it to the request. I think in general you can only pass String objects in HTTP requests. The only question is : does the JS request SDK automatically converts your "dict" - "object" to String. if i remember, you can do something like : var body = {"receipt-data": token} body = str(body) then in your request (actually you have a "data" var that should be "body" in your request body.
Replies
Boosts
Views
Activity
May ’22
Reply to Error 21002 when validating receipt
The answer was so simple i am sorry, i should pass a String object to the POST request. Instead, i was passing a Dict in python which doesn't make sense. The code should be : request_body = json.dumps({"receipt-data": token}) Thanks for your time, you can close my case as well !
Replies
Boosts
Views
Activity
May ’22
Reply to Error 21002 when validating receipt
Hello, thanks for the update (i had already read this documentation) but i thought the password was only needed for subscriptions (which i don't use). I will try tomorrow with the app's shared secret in the request !
Replies
Boosts
Views
Activity
May ’22