gounlimited.to | BANNED FROM WJ

Status
Not open for further replies.
Same problem than Danny Colum and probably cin24h, the error is "SEC_ERROR_UNKNOWN_ISSUER", you probably have a problem with your SSL certificate issuer.
 
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "
https://gounlimited.to/api/account/info?key=key
");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
$response = curl_exec($ch);
curl_close($ch);
var_dump($response);


i solved the problem , on api page , the code not working anymore ,
its about ssl (you hv change your ssl)


you have to add your curl """" curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); """"

so it must be like that ,

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://gounlimited.to/api/account/info?key=key");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$response = curl_exec($ch);
curl_close($ch);

var_dump($response);

now you ll get response like that ,,

"{"msg":"Invalid key","server_time":"2019-12-17 20:17:13","status":400}"

so its not error now you can get response with curl but you have to write your api key ....
 
Are you talking about API?

Nope just by going to gounlimited.to or by seeing an embed I have this SSL error.
Also by any chance would it be possible to not have the captcha(as well as on tazvids) when login the first time(if you put it like the second or third time no risk of bruteforce as well), I am using tor for security reasons and the google captchas are just impossible to do.
 
Nope just by going to gounlimited.to or by seeing an embed I have this SSL error.
Also by any chance would it be possible to not have the captcha(as well as on tazvids) when login the first time(if you put it like the second or third time no risk of bruteforce as well), I am using tor for security reasons and the google captchas are just impossible to do.
I was pissed also because of facing reCaptcha in the login page, so I will take care of that soon. However, as for the SSL issue, it happens rarely and only with Firefox based browsers.. and we will fix it very shortly.
 
Here is a Trick to block it. I use Firefox to and all is ok.

getimage.php
 
Just wondering if is still available the reward for sending the payout history, if is it here is mine

https://prnt.sc/qa1vkv

Username: tonyflames

Also have an issue with the remote upload from onlystream, the first day you announced worked perfectly but days later videos are getting stucked



Thank you.
 
Status
Not open for further replies.
Back
Top