![]() |
Quote:
|
Hello mates :)
I just wanna share with you my joy of reached the 1K in one month for the first time on StripChat https://i.ibb.co/4pHT0qN/stripchat-22-Nov-2021.png |
Black Friday Promo
Dear Partners, Black Friday approaches, and we prepared an excellent way for our members and affiliates to celebrate it: Black Friday promotion: 100 extra free tokens when buying 50 USD or higher packages. Begins : 2021-11-25 12:00 UTC Ends : 2021-11-30 12:00 UTC This time the promotion will massively boost rebuys as well, not only first buys. So make sure to push this period as hard as you can and utilize the higher conversion rate. For any additional details, feel free to hit up your traffic manager. |
Quote:
:thumbsup |
Quote:
|
Quote:
|
Quote:
And the month is not over yet and Black Friday promo is coming also. I'm sure your new record will be higher! |
Quote:
Quote:
Quote:
Quote:
|
Quote:
|
Quote:
|
The final promotion of 2021
Dear Partners, As the end of 2021 approaches, it's time for the year's most effective promotion. Historically, December is always a record month, and we do not expect anything less from this year: Christmas promotion: 50% discount on 20.99 packages. Great offer for first buys. Begins : 2021-12-23 12:00 UTC Ends : 2021-12-28 12:00 UTC New Year promotion: Free additional smaller packages with each purchase. Great offer for rebuys. Begins : 2021-12-29 12:00 UTC Ends : 2022-01-03 12:00 UTC Use this month smartly, as it can set your growth up for 2022. Well...tbh Dezember was historically always the worst month in the year ^^ |
Quote:
|
Quote:
|
Quote:
Hows it going these days? |
Quote:
|
In a week 5 different members were refunded ~$600.
Did they masturbate for free? :) |
Quote:
Don't know, but this happened to me at least. |
So now I have everyday refunds of different users - $1200.
WTF is happening? |
Quote:
|
Quote:
https://i.ibb.co/TrbpRPs/STRIPCHAT-DECEMBER.png |
Quote:
|
It looks like on mobile visitors are offered the option to install an app, even on whitelabels. That's pretty cool! :thumbsup
|
One question guys: do you send your traffic to the original site from stripchat or to your whitelabels?
Is it possible to add the whitelabel to a subdomain? Would a whitelabe on a subdomain maybe increase the duration time on my domain entirely and bringt some seo benefits? Greets |
Quote:
You won't get SEO benefits. Your whitelabel has a canonical tag referring to stripchat so any backlink and SEO juice goes to stripchat. Most whitelabel solutions work like this as it wouldn't make sense for Google to index identical sites. If you want SEO friendly then you can use the stripcash API to integrate with your site. |
These promos really should be announced imo. :2 cents:
How it's going for everyone? |
Stripchat is done
Anyone know how to contact stripchat? They owe me a few hundred $ but after a dozen support tickets and 5 days they wont even respond to me. Few hundred not that much but I will earned it so it pisses me off. Dont become the next victim they will steal your funds then ghost you. FUCK STRIP CHAT AND ANY OTHER AFFILIATE THIEVES
|
Does anyone have contact info for stripchat? Been tyring to contact for almosta week now. Ever since they got hacked they stoped live chat support. I have made over 12 tickets and waited 6 days but no one from stripchat is responding. Are they currently hacked AGAIN or are they just trying to steal as much as they can before they fully disappear? FUCK STRIP CHAT AND ANY OTHER NUMBER SHAVERS!
|
Check your inbox for a welcome message from Dzhanova, your affiliate manager from StripCash.
Do they owe you as a Broadcaster, or Affiliate? StripChat and StripCash are two separate offices. Do you have a valid payment method on file with them?? From my experience, that's about the only way payments ever got fouled up. Also, both have healthy minimum thresholds, but I as a broadcaster got paid just the other day and made the threshold. Got paid a day earlier than I thought I was going to get paid! Quote:
|
Quote:
Since 2 years I have all payouts on point and no problems at all. |
Quote:
|
Geo Block on the stripcash API and Iframe
-- How do you geo block models server side?
-- How do you geo block when using the iframe? (lite-iframe.stripcdn.com) The documentation states there's a parameter called "country" to be passed on to the querystring. It is unclear where to get the country from nor which format. The documentation also states that if this parameter is not passed on, then the IP of the user is used. This surely works on a client side implementation but my understanding is that this is not working on server side sites (php). Furthermore if you use an iframe to show the model feed. So any hints from wenmasters or/and stripcash ? Thanks |
All other cam sites APIs ask that you pass the IP of the current user so they can return relevant data. For example, Chaturbate API v2 will return a list of models when you pass client_ip=x.x.x.x (where x.x.x.x is the ip of the visitor, like 12.12.12.12)
Same goes with Whalehunter or AWE (which also have an end point for a given model). With StripChash it is different: - The only API endpoint StripCash supplies at the time I'm writing is a method to get a list of models: https://go.xlviiirdr.com/api/models - The doc (https://stripcash.com/documentation/models-list) gives a list of parameters, 2 of those seem to be used for geo blocks : country and region. Quote:
Can you also pass this to the iframe like so: lite-iframe.stripcdn.com/modelname?country=fr I feel like I am in the 6th sense. Can anyone see me?!?! |
I found out how do do this: as I assumed, pass the country code like so to filter the list by geo blocks: country=XX
I've done a couple of tests and it worked: adding country=co then models with geobans like [co] disappeared from the response. Another way is to add fields=geobans to your querystring and then add a piece of code to filter out models in the response that have a geoban in the country where your visitor is. I'll go with option 1 since the logic is on the API side. Anyway if you don't specify a value, the documentation states it's going to take the ip of the caller by default, which, in the case of a server side implementation (LAMP for example) is going to be the ip of the server (which is not what you want). That's for the list page. Don't take my word for it, verify for yourself and/or ask your AM. |
we'll improve our API documentation to make it more clear.
for geobans, it's enough to use 1 parameter "fields=geobans" (it will both extract model blocked country info + user GEO). For widgets, it's same way |
dzhanova is 100% right : fields=geobans will add geo bans info to the response.
It is important to note that it is not applying any geo filters, it merely enrich the json response. without fields=geobans you get: Code:
{"count":1,"total":5187,"models":[{"id":57297042,"username":"testmodelname"]} Code:
{"count":1,"total":5187,"models":[{"id":57297042,"username":"testmodelname"],"geobans":{"blockedCountries":["ru"],"blockedRegions":{}}} - add country=xx (replace xx by the 2 letters country code of the current visitor) This is the preferred solution because the business logic is on the API side. country=ru will have the API ruturn all models except those who have geo banned Russia. - add some code on your website where you handle the JSON response to compare current user location with list of geo bans returned. This is a poor solution. ** disclaimer : all the above is based on my tests + info I read in the doc (country parameter) Quote:
|
we noticed that geoban works not in all cases, as it should. we're on fixing this.
@drexl thank you for this investigation and tests! the info you provide helps us to improve. |
Dear Partner,
We want to share insight into the Junes StripCash and StripChat updates. Stripcash releases for your attention : - Uniq Member categorization based on spending You can set up three categories based on spending and monitor which cohort of users are actively spending with you. This way, you can track if your whales are still with you or missing from a given period. You can find this setting in the statistics/option part. After running the report, add these three columns to your table: Low spenders Medium spenders High spenders - Creative builder Build creatives easier: /links-and-creatives/ad-creatives-builder - Model signups from whitelabels redirect to /become-a-model instead of /signup/model for more comprehensive model onboarding. - VR device tracking is now possible under client device grouping. We will update this grouping to include all the actual VR devices worldwide. - Fixed the responsive issues with the news page - We have improved our Machine Learning to exclude thumbs where we don't have models in the camera. - We have marked the tags where machine learning is enabled here: /links-and-creatives/links-builder. The Computer Vision will prioritize the models within the title if it detects the anal or blowjob action. - Language detection rules are now available for API users; add &forceClient=1 parameter to your request. It is suggested to use it as its the best-converting logic. Stripchat product-related releases for your attention : - We have removed the duplicates of models on the Index within Recommended and Last Picks buckets. This release improved the engagement of the index page by keeping every bracket unique. - We show an extra signup thumb on the guest's favorite page in case he has at least one favorite. This release improves the conversion rate for guests who prefer not to register but still collect favorites. - The VR device users now can zoom on the models to "pull them closer." We will release further positioning customizations shortly. We have also enabled emoticons for VR users. |
Quote:
|
Quote:
|
Quote:
|
All times are GMT -7. The time now is 06:26 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc