php-snapchat
php-snapchat copied to clipboard
I fixed the upload-sending snap issue
Hello, I changed this line:
$media_id = strtoupper($this->username) . '~' . time();
to this:
$media_id = strtoupper($this->username) . '~' . strtoupper(gen_uuid());
in snapchat.php
And the snap sending is working. You can find the gen_uuid function here.
I love you
I still doesn't work for me. Both upload() and send() return false. Any idea what the problem could be?