Skip to content

Instantly share code, notes, and snippets.

@jmagnuss
Created November 13, 2014 05:48
Show Gist options
  • Select an option

  • Save jmagnuss/ff3ab88f7ec564c22182 to your computer and use it in GitHub Desktop.

Select an option

Save jmagnuss/ff3ab88f7ec564c22182 to your computer and use it in GitHub Desktop.
SuperRewards Example: Minimum offer payout
<?php
$app_hash = "nhhpuxlrfgi.022815956433";
$secret_key = "dc08b6d41de7b0c467a66b6acb9e9a4d";
$uid = 123456;
$payout_min = 5;
$min_srt = md5($payout_min . $secret_key);
printf("URL: http://wall.superrewards.com/super/offers?h=%s&uid=%d&payout_min=%d&min_srt=%s\n", $app_hash, $uid, $payout_min, $min_srt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment