ultcmd08 Posted March 9, 2013 Share Posted March 9, 2013 i am using gwallet on my site from http://radiumone.com/one step is to add a callback url that can p[erformWe will send the following parameters to your Postback URL every time a user completes an offer or payment:• appId is Application ID of your application on RadiumOne Social• userId is the user ID value you've passed to us on iFrame call• amount is the transaction amount of your virtual currency• hash is MD5 hash you can use to verify the postback, calculated as md5([uSER_ID]+":"+[APP_ID]+":"+[sECRET_KEY]), where "+" is string concatenation and [sECRET_KEY] is the secret key of your application• trackId is the tracking value you passed to us on iFrame callNote: Your reply must be a single character 1 on success or 0 otherwiseanyone know how to make a php file do this? Link to comment https://forums.phpfreaks.com/topic/275434-gwallet/ Share on other sites More sharing options...
trq Posted March 9, 2013 Share Posted March 9, 2013 Very straight forward. <?php // process data then if ($success) { echo '1'; } else { echo '0'; } The hard part is going to be doing whatever you need to do with the data. What exactly are you expecting to do with the data? Link to comment https://forums.phpfreaks.com/topic/275434-gwallet/#findComment-1417707 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.