09-28-2012 05:18 AM
When adding virtual goods to an app in AppWorld, it is possible to insert a "Short Description" (and "Long Description") of the good.
I can't seem to get these strings into the app it self, though.
When getting information from a "PaymentService"-event, I can only get the following data:
const char* date = paymentservice_event_get_date(event, 0);
const char* digital_good = paymentservice_event_get_digital_good_id(event, 0);
const char* digital_sku = paymentservice_event_get_digital_good_sku(event, 0);
const char* license_key = paymentservice_event_get_license_key(event, 0);
const char* metadata = paymentservice_event_get_metadata(event, 0);
const char* purchase_id = paymentservice_event_get_purchase_id(event, 0);
Is it it possible to get the "Descriptions" directy in to the app somehow?