Hello,
I have some questions about the behavior of IAP.
1. IAP allows nothing but 1 on the param _startNumber:
When calling get_purchased_item_list or get_item_list,
IAP returns right answers with the items list only when the calling param _startNumber is just 1 but it returns empty list when _startNumber is not 1.
(but it does not occur errors)
Is any way to get item list with other range not starting from 1?
2. IAP processes only one request at once
I want to know 1. current item list and 2. purchased list as soon as possible.
To make this, I send their requests consequently without waiting response of first one.
However the result of them is not as I expected.
I confirmed the requests are sent successfully but the second request seems to be ignored by the store
and only the response of the first request is returned to the client.
That means I have to wait until getting the first response to send the second request.
Is any way to make IAP processes one more requests at once?
3. Output of get_*_item_list
On P19 of IAP Programming Guide, one of the return value, _totalCount should be the count of items based on _startNumber and _endNumber.
However, It always returns the total number of the item group that is not based on _startNumber and _endNumber.
That make me confused on making my application with IAP.
Could you let me know which is the right behavior on IAP?
Thanks,