This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sendPaymentRequest($email,$amount){ | |
//http://davidwalsh.name/curl-post | |
//set POST variables | |
$url = 'https://api.venmo.com/v1/payments'; | |
$access_token = ; // use your access token | |
$phone = $email; // This is email address, phone number, or user id (I think -- email addresses are common) | |
$note = "This is a request for a payment of $".$amount." for ..."; | |
$amount = $amount; | |
$audience = 'private';// chose audience |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Wav = function(opt_params){ | |
/** | |
* @private | |
*/ | |
this._sampleRate = opt_params && opt_params.sampleRate ? opt_params.sampleRate : 44100; | |
/** | |
* @private | |
*/ |
NewerOlder