a simple stripcash widget
a simple stripcash widget
hello again,
this time out i am doing a simple stripchat video widget that will (hopefully) not get blocked by chrome or adblockers
this one is a bit different from the chaturbate one i did a while back.
for stripchat i went with a php solution for a couple of reasons, the main one being that adblockers block the stripcash api call when you try to do it via javascript/ajax
since the api call was getting blocked, that kind of forced me into using a server side solution
stripchat does not, in their api, return iframe code. they do provide the actual streaming link. to use that we have to create a video player which we can then put into an iframe
the structure for this, on your server is:
mainsite
subfolder1 for the widget - whatever makes sense to you
subfolder2 for the webcam link (i called this webcam, it can be pretty much anything)
inside the subfolder1 we have:
sc_widget.php - main code for the widget
video-js7-17-0.css - style sheet for the video player
video.min7-17-0.js - javascript for the video player
webcam.php - the video player code
subfolder2 - like i said i called this webcam
inside subfolder2 we have an .htaccess file and index.php
The sc_widget.php file contains the code that you would want to integrate into your page, it includes the styles and the actual code but I did it as an html page so that it would work stand alone, if needed i can do a post showing how to put it into your page, right now it is past my bedtime so i am done for today
in this widget i actually pull in 50 cams and then pick a random cam from however many get returned.
Here is the code:
The widget itself (sc_widget.php)
<?php
// edit this to include the genders you want as listed in the stripcash api documentation https://stripcash.com/documentation/models-list
$genders=array('female');
// edit the limit parameter to bring in more or less than 50 cams if wanted
$chatfeedlink='https://go.xlirdr.com/api/models?sortBy ... c&limit=50';
for($i=0;$i<count($genders);$i++)
{
$chatfeedlink .='&gender=' . $genders[$i];
}
$page=file_get_contents($chatfeedlink);
if($page)
{
$chkit=json_decode($page, true);
}
else
{
die;
}
if(count($chkit['models'])>1)
{
$maxcams=count($chkit['models'])-1;
$cam2get=rand(1, $maxcams);
$username=$chkit['models'][$cam2get]["username"];
$stream=$chkit['models'][$cam2get]['stream']['url'];
}
?>
<html>
<head>
<meta charset=utf-8 />
<link href="video-js7-17-0.css" rel="stylesheet" />
<style>
#camdiv{clear:both;position:relative;text-align:center;margin:auto;aspect-ratio:1.77/1;}
#camdiv{width:350px;} <----change this to change the widget size
#innerdiv{
position:absolute;
top:0px;
left:0px;
height:100%;
width:100%;
text-align:center;
}
.currcam{height:100%;width:100%;text-align:center;}
.modellink {text-decoration:none;cursor:pointer;color:#ffffff;text-shadow: 2px 2px #000000;}
#overlay {position:absolute;top:0px;left:0px;height:100%;width:100%;}
</style>
</head>
<body>
<?php
if(!empty(trim($username)))
{
?>
<div name="camdiv" id="camdiv">
<div name="innerdiv" id="innerdiv" style="background-color:#000000;">
<iframe class="currcam" name="currcam" id="currcam" src="webcam.php?stream=<?php echo $stream; ?>" frameborder="0" scrolling="no" ></iframe>
</div>
<a class="modellink" name="modellink" id="modellink" href="webcam/<?php echo $username; ?>" title="Click here to join the chat.">
<div name=overlay id=overlay>
</div>
</a>
</div>
<?php
}
?>
</body>
</html>
The webcam.php code:
<?php
$stream='';
if(isset($_GET['stream']))
{
$stream=stripslashes($_GET['stream']);
}
?>
<html>
<head>
<meta charset=utf-8 />
<link href="video-js7-17-0.css" rel="stylesheet" />
</head>
<body style="width:100%;height:100%;">
<div id="video_box" style="width:100%;height:100%;position:relative;text-align:center;color:#ffffff;background-color:#000000;font-size:2em;font-family:arial;">
<video autoplay muted style="width:100%;height:100%;position:relative;"
id="my-video"
class="video-js"
preload="auto"
data-setup="{}"
>
<source src="<?php echo $stream; ?>" type='application/x-mpegURL'>
</video>
</div>
<script src="video.min7-17-0.js"></script>
<script>
var player = videojs('my-video');
player.on('error', function(event) {
document.getElementById("video_box").innerHTML="<br><br>It appears that this cam show has ended.";
});
</script>
</body>
And the code that is in the subfolder2/index.php file:
<?php
//edit this to your stripchat url as found in the stripcash dashboard
$url2use="https://go.xxxiijmp.com?sourceId=camtok ... xxxxxxxxxx";
$tag="";
$work=$_SERVER['REQUEST_URI'];
if(substr_count($work,"/")>0)
{
$tag=strtolower(substr($work,strrpos($work,"/")+1));
$tag=trim(str_replace(".htm","",str_replace(".php","",strtolower($tag))));
}
if(!empty($tag))
{
$redir=$url2use . "&path=%2F" . $tag;
header('Location: ' . $redir);
}
?>
that's about it
working demo at https://madspiders.com/sc/sc_widget.php
zipped up code at https://madspiders.com/sc/sc_widget.zip
Have fun!
this time out i am doing a simple stripchat video widget that will (hopefully) not get blocked by chrome or adblockers
this one is a bit different from the chaturbate one i did a while back.
for stripchat i went with a php solution for a couple of reasons, the main one being that adblockers block the stripcash api call when you try to do it via javascript/ajax
since the api call was getting blocked, that kind of forced me into using a server side solution
stripchat does not, in their api, return iframe code. they do provide the actual streaming link. to use that we have to create a video player which we can then put into an iframe
the structure for this, on your server is:
mainsite
subfolder1 for the widget - whatever makes sense to you
subfolder2 for the webcam link (i called this webcam, it can be pretty much anything)
inside the subfolder1 we have:
sc_widget.php - main code for the widget
video-js7-17-0.css - style sheet for the video player
video.min7-17-0.js - javascript for the video player
webcam.php - the video player code
subfolder2 - like i said i called this webcam
inside subfolder2 we have an .htaccess file and index.php
The sc_widget.php file contains the code that you would want to integrate into your page, it includes the styles and the actual code but I did it as an html page so that it would work stand alone, if needed i can do a post showing how to put it into your page, right now it is past my bedtime so i am done for today
in this widget i actually pull in 50 cams and then pick a random cam from however many get returned.
Here is the code:
The widget itself (sc_widget.php)
<?php
// edit this to include the genders you want as listed in the stripcash api documentation https://stripcash.com/documentation/models-list
$genders=array('female');
// edit the limit parameter to bring in more or less than 50 cams if wanted
$chatfeedlink='https://go.xlirdr.com/api/models?sortBy ... c&limit=50';
for($i=0;$i<count($genders);$i++)
{
$chatfeedlink .='&gender=' . $genders[$i];
}
$page=file_get_contents($chatfeedlink);
if($page)
{
$chkit=json_decode($page, true);
}
else
{
die;
}
if(count($chkit['models'])>1)
{
$maxcams=count($chkit['models'])-1;
$cam2get=rand(1, $maxcams);
$username=$chkit['models'][$cam2get]["username"];
$stream=$chkit['models'][$cam2get]['stream']['url'];
}
?>
<html>
<head>
<meta charset=utf-8 />
<link href="video-js7-17-0.css" rel="stylesheet" />
<style>
#camdiv{clear:both;position:relative;text-align:center;margin:auto;aspect-ratio:1.77/1;}
#camdiv{width:350px;} <----change this to change the widget size
#innerdiv{
position:absolute;
top:0px;
left:0px;
height:100%;
width:100%;
text-align:center;
}
.currcam{height:100%;width:100%;text-align:center;}
.modellink {text-decoration:none;cursor:pointer;color:#ffffff;text-shadow: 2px 2px #000000;}
#overlay {position:absolute;top:0px;left:0px;height:100%;width:100%;}
</style>
</head>
<body>
<?php
if(!empty(trim($username)))
{
?>
<div name="camdiv" id="camdiv">
<div name="innerdiv" id="innerdiv" style="background-color:#000000;">
<iframe class="currcam" name="currcam" id="currcam" src="webcam.php?stream=<?php echo $stream; ?>" frameborder="0" scrolling="no" ></iframe>
</div>
<a class="modellink" name="modellink" id="modellink" href="webcam/<?php echo $username; ?>" title="Click here to join the chat.">
<div name=overlay id=overlay>
</div>
</a>
</div>
<?php
}
?>
</body>
</html>
The webcam.php code:
<?php
$stream='';
if(isset($_GET['stream']))
{
$stream=stripslashes($_GET['stream']);
}
?>
<html>
<head>
<meta charset=utf-8 />
<link href="video-js7-17-0.css" rel="stylesheet" />
</head>
<body style="width:100%;height:100%;">
<div id="video_box" style="width:100%;height:100%;position:relative;text-align:center;color:#ffffff;background-color:#000000;font-size:2em;font-family:arial;">
<video autoplay muted style="width:100%;height:100%;position:relative;"
id="my-video"
class="video-js"
preload="auto"
data-setup="{}"
>
<source src="<?php echo $stream; ?>" type='application/x-mpegURL'>
</video>
</div>
<script src="video.min7-17-0.js"></script>
<script>
var player = videojs('my-video');
player.on('error', function(event) {
document.getElementById("video_box").innerHTML="<br><br>It appears that this cam show has ended.";
});
</script>
</body>
And the code that is in the subfolder2/index.php file:
<?php
//edit this to your stripchat url as found in the stripcash dashboard
$url2use="https://go.xxxiijmp.com?sourceId=camtok ... xxxxxxxxxx";
$tag="";
$work=$_SERVER['REQUEST_URI'];
if(substr_count($work,"/")>0)
{
$tag=strtolower(substr($work,strrpos($work,"/")+1));
$tag=trim(str_replace(".htm","",str_replace(".php","",strtolower($tag))));
}
if(!empty($tag))
{
$redir=$url2use . "&path=%2F" . $tag;
header('Location: ' . $redir);
}
?>
that's about it
working demo at https://madspiders.com/sc/sc_widget.php
zipped up code at https://madspiders.com/sc/sc_widget.zip
Have fun!
tried to edit but it is too late (dammit)
i just want to mention that Gily, my account manager at stripcash, helped me a bit with some issues i was having with the api.
Thanks Gily
i just want to mention that Gily, my account manager at stripcash, helped me a bit with some issues i was having with the api.
Thanks Gily

I mad a small change to the styling in the cb_widget.php file this morning. wrapped the camdiv width inside a media only....
rezipped it this morning
rezipped it this morning
- TheButcher
- Posts: 10449
- Joined: February 2nd, 2018, 11:48 am
- Title: I like weekends
- Referrals: 1
- Contact:
- BrasSmonkey
- Posts: 4525
- Joined: February 28th, 2018, 6:31 pm
- Title: Smell My Sack
- Referrals: 1
- Contact:
they do that kfc or whatever that face shit is. fuckem! 

brassballz-@-techie.com
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
somebody asked for one so i did itBrasSmonkey wrote: ↑March 18th, 2023, 10:53 amthey do that kfc or whatever that face shit is. fuckem!![]()
still looking at bonga and camsoda
- TheButcher
- Posts: 10449
- Joined: February 2nd, 2018, 11:48 am
- Title: I like weekends
- Referrals: 1
- Contact:
BrasSmonkey wrote: ↑March 18th, 2023, 10:53 amthey do that kfc or whatever that face shit is. fuckem!![]()
You know this kyc shit is getting beyond stupid.
- BrasSmonkey
- Posts: 4525
- Joined: February 28th, 2018, 6:31 pm
- Title: Smell My Sack
- Referrals: 1
- Contact:
wait till they start scanning assholes...TheButcher wrote: ↑March 18th, 2023, 2:49 pmBrasSmonkey wrote: ↑March 18th, 2023, 10:53 amthey do that kfc or whatever that face shit is. fuckem!![]()
You know this kyc shit is getting beyond stupid.

brassballz-@-techie.com
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]

- Zug
- Posts: 72
- Joined: February 11th, 2023, 9:19 am
- Location: America
- Title: Confirmed Caveman
- Referrals: 4
- Contact:
It won't be long until KYC is as normal as when you walk into a bank to open a new account and have to give them all your credentials to proceed.TheButcher wrote: ↑March 18th, 2023, 2:49 pmYou know this kyc shit is getting beyond stupid.BrasSmonkey wrote: ↑March 18th, 2023, 10:53 amthey do that kfc or whatever that face shit is. fuckem!![]()
Also, not too far off, is when it will be normal to store your KYC information, State ID info, Drivers license info, Social Media profile info all in a blockchain type of token that you have full control over and can update your information as needed and so you can grant or deny that information to or from whatever site you wish.
Thanks for this post. I very well may try to experiment with a cam page addition when I get time. I have no clue how to set one up with how you have the cam thumbs and all. I want to be able to use it inside of my site with my own template, not on a different domain.sarettah wrote: ↑March 17th, 2023, 11:37 pm. . .
that's about it
working demo at https://madspiders.com/sc/sc_widget.php
zipped up code at https://madspiders.com/sc/sc_widget.zip
Have fun!
Web Model Portal - A model portal dedicated to beautiful girls and their hot model photos. Webmodels • Webmasters • Webhosting
©2003-2023 by Zug™
©2003-2023 by Zug™
do you mean like this: https://camtok.com/camlist.htm ?Zug wrote: ↑March 20th, 2023, 9:22 amThanks for this post. I very well may try to experiment with a cam page addition when I get time. I have no clue how to set one up with how you have the cam thumbs and all. I want to be able to use it inside of my site with my own template, not on a different domain.
i put that list together on saturday, i already had the embeds running but added a list
you can definitely put them on your own domain but the embeds pull from the sponsors, unless you want to run your own cam site where you actually host the cams which is a whole different thing
- BrasSmonkey
- Posts: 4525
- Joined: February 28th, 2018, 6:31 pm
- Title: Smell My Sack
- Referrals: 1
- Contact:
maybe you love to be a profiled sheep fuck that. you wait till the hackers get in that shit.Zug wrote: ↑March 20th, 2023, 9:22 amIt won't be long until KYC is as normal as when you walk into a bank to open a new account and have to give them all your credentials to proceed.TheButcher wrote: ↑March 18th, 2023, 2:49 pmYou know this kyc shit is getting beyond stupid.BrasSmonkey wrote: ↑March 18th, 2023, 10:53 amthey do that kfc or whatever that face shit is. fuckem!![]()
Also, not too far off, is when it will be normal to store your KYC information, State ID info, Drivers license info, Social Media profile info all in a blockchain type of token that you have full control over and can update your information as needed and so you can grant or deny that information to or from whatever site you wish.
Thanks for this post. I very well may try to experiment with a cam page addition when I get time. I have no clue how to set one up with how you have the cam thumbs and all. I want to be able to use it inside of my site with my own template, not on a different domain.sarettah wrote: ↑March 17th, 2023, 11:37 pm. . .
that's about it
working demo at https://madspiders.com/sc/sc_widget.php
zipped up code at https://madspiders.com/sc/sc_widget.zip
Have fun!
brassballz-@-techie.com
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
- Zug
- Posts: 72
- Joined: February 11th, 2023, 9:19 am
- Location: America
- Title: Confirmed Caveman
- Referrals: 4
- Contact:
Zug wrote: ↑March 20th, 2023, 9:22 amIt won't be long until KYC is as normal as when you walk into a bank to open a new account and have to give them all your credentials to proceed.
Also, not too far off, is when it will be normal to store your KYC information, State ID info, Drivers license info, Social Media profile info all in a blockchain type of token that you have full control over and can update your information as needed and so you can grant or deny that information to or from whatever site you wish.BrasSmonkey wrote: ↑March 20th, 2023, 12:33 pmmaybe you love to be a profiled sheep fuck that. you wait till the hackers get in that shit.

I have not yet heard of ONE hacker that has hacked a blockchain. But, I have heard of MANY hackers successfully hacking exchanges, or banks. Banks have your KYC info.
How do you get paid? Have you not a bank account? If you do, your data is in a database somewhere. Thus, you are 'profiled' and hackers can hack that shit a lot easier than they can hack a blockchain.
KYC is meant to be stored on a blockchain's smart contract. I am not 100% positive, but I am willing to bet that ANY business asking for KYC are working with a security level that is most likely managed on a blockchain. Specially if they can pay out and process digitally or via cryptocurrency payments. Everything is digital these days anyway.
Fucking CCBill needs to get with that program. Or they will be no more. Why? Because CCBill uses VISA and MASTERCARD (banks) processors (scrub the shit out of it too). And those processors don't like processing online porn (like PornHub, Coed Cherry). WHY? Because they have a problem with site owners being able to prove web model age and content consent. ie legalities of purchase. KYC cures all of that ID information on a secure blockchain. ie smart contracts (ETH, ADA).
So, I dunno. If you are in this business you must have a bank account to be able to get paid. So you must have provided your KYC info; thus be profiled and hackable according to your said logic; like all of us other people. KYC is crucial to be able to be paid in some method. Cash, Credit, or Crpyto. It's the processors that are responsible for the security of that information.

Not sure how this is related to promoting webcam sites though. Is there a difference between promoting most any other legitimate adult affiliate program? Don't they all need to know who they are paying? Are they not liable to the law of processing currency?
Don't get me wrong. I would love to be able to get paid in Gold or something that is not recorded in a ledger; evade taxes etc. lol
Web Model Portal - A model portal dedicated to beautiful girls and their hot model photos. Webmodels • Webmasters • Webhosting
©2003-2023 by Zug™
©2003-2023 by Zug™
- BrasSmonkey
- Posts: 4525
- Joined: February 28th, 2018, 6:31 pm
- Title: Smell My Sack
- Referrals: 1
- Contact:
you are a fucking cavemanZug wrote: ↑March 20th, 2023, 11:50 pmZug wrote: ↑March 20th, 2023, 9:22 amIt won't be long until KYC is as normal as when you walk into a bank to open a new account and have to give them all your credentials to proceed.
Also, not too far off, is when it will be normal to store your KYC information, State ID info, Drivers license info, Social Media profile info all in a blockchain type of token that you have full control over and can update your information as needed and so you can grant or deny that information to or from whatever site you wish.BrasSmonkey wrote: ↑March 20th, 2023, 12:33 pmmaybe you love to be a profiled sheep fuck that. you wait till the hackers get in that shit.![]()
I have not yet heard of ONE hacker that has hacked a blockchain. But, I have heard of MANY hackers successfully hacking exchanges, or banks. Banks have your KYC info.
How do you get paid? Have you not a bank account? If you do, your data is in a database somewhere. Thus, you are 'profiled' and hackers can hack that shit a lot easier than they can hack a blockchain.
KYC is meant to be stored on a blockchain's smart contract. I am not 100% positive, but I am willing to bet that ANY business asking for KYC are working with a security level that is most likely managed on a blockchain. Specially if they can pay out and process digitally or via cryptocurrency payments. Everything is digital these days anyway.
Fucking CCBill needs to get with that program. Or they will be no more. Why? Because CCBill uses VISA and MASTERCARD (banks) processors (scrub the shit out of it too). And those processors don't like processing online porn (like PornHub, Coed Cherry). WHY? Because they have a problem with site owners being able to prove web model age and content consent. ie legalities of purchase. KYC cures all of that ID information on a secure blockchain. ie smart contracts (ETH, ADA).
So, I dunno. If you are in this business you must have a bank account to be able to get paid. So you must have provided your KYC info; thus be profiled and hackable according to your said logic; like all of us other people. KYC is crucial to be able to be paid in some method. Cash, Credit, or Crpyto. It's the processors that are responsible for the security of that information.
![]()
Not sure how this is related to promoting webcam sites though. Is there a difference between promoting most any other legitimate adult affiliate program? Don't they all need to know who they are paying? Are they not liable to the law of processing currency?
Don't get me wrong. I would love to be able to get paid in Gold or something that is not recorded in a ledger; evade taxes etc. lol





brassballz-@-techie.com
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
--->>PM or Email
Services: [Wordpress Site Building] - [SEO] - ][FEEDER SITES] - [REDDIT] - [Manual Video Uploading] -
[Gallery Building] - [And More!]
- Zug
- Posts: 72
- Joined: February 11th, 2023, 9:19 am
- Location: America
- Title: Confirmed Caveman
- Referrals: 4
- Contact:
BrasSmonkey wrote: ↑March 18th, 2023, 10:53 amthey do that kfc or whatever that face shit is. fuckem!![]()
BrasSmonkey wrote: ↑March 20th, 2023, 12:33 pmmaybe you love to be a profiled sheep fuck that. you wait till the hackers get in that shit.
I understand that you said KYC is basically not an acceptable standard - and - People that do that are sheep, is that not what you said?BrasSmonkey wrote: ↑March 21st, 2023, 12:21 amyou are a fucking caveman![]()
stripchat requires kyc you understand??? should i grunt it or sum shit??
![]()
ok nuff said you are fucking up the thread
![]()
I simply replied with the reasonable use of KYC.
Whatever funky monkey.

Web Model Portal - A model portal dedicated to beautiful girls and their hot model photos. Webmodels • Webmasters • Webhosting
©2003-2023 by Zug™
©2003-2023 by Zug™