最近从某个博客上看到4414论坛签到、发帖、回帖得金币,金币可以换钱的文章,薅羊毛怎么能少得了我。大家注册的时候麻烦填写下我的邀请码 28924
邀请码并不会奖励我金币,只会让我提升等级而已,所以不必眼红。
注册地址:https://www.4414.cn/forum.php?register=1&fromuid=28924
金币奖励内容
- 1.发帖+0.2元(每日2次)
- 2.回帖+0.1元(每日4次)
- 3.加精华+1元或3元
- 签到
签到奖励规则
第一天 1000金币
第二天 1100金币
第三天 1200金币
…. ….
…. ….
第十天 1900金币
…. ….
…. ….
第20天 2450金币
…. ….
…. ….
第30天 3000金币
金币兑换比例:10000金币=1元,满2元即可提现。
每天一分钟,收入1块钱,还是不错的。
4414论坛上没有验证码,于是简单写了个自动签到程序,测试了一天签到没有问题,源码如下。
复制
#!/usr/bin/python3 # -*- coding: UTF-8 -*- import requests import json qd_headers={ 'Cookie':'你的cookie', "Referer": "https://www.4414.cn/forum.php", "User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3870.400 QQBrowser/10.8.4405.400"} resp = requests.get("https://www.4414.cn/plugin.php?id=k_misign:sign&operation=qiandao&format=button&formhash=92ccc72b&inajax=1&ajaxtarget=midaben_sign", headers =qd_headers) print(resp.text)
自行使用浏览器抓包,将登陆账号的cookie复制到上面的代码中即可,python源码依赖requests模块,自行安装,不会的看我前面的教程。
评论 (2)