php-snapchat icon indicating copy to clipboard operation
php-snapchat copied to clipboard

I fixed the upload-sending snap issue

Open excodex opened this issue 10 years ago • 2 comments

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.

excodex avatar Jul 18 '14 22:07 excodex

I love you

spartanz51 avatar Jul 19 '14 10:07 spartanz51

I still doesn't work for me. Both upload() and send() return false. Any idea what the problem could be?

NSURLSession0 avatar Nov 03 '14 09:11 NSURLSession0