forked from WeiGiegie/666
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flo.js
120 lines (40 loc) · 1.27 KB
/
flo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
*
*
脚本功能:女性日记flo-大姨妈助手、排卵期安全期日历
软件版本:9.59.0
下载地址:
脚本作者:
更新时间:2024年
电报频道:https://t.me/GieGie777
问题反馈:
使用声明:此脚本仅供学习与交流,请在下载使用24小时内删除!请勿在中国大陆转载与贩卖!
*******************************
[rewrite_local]
# >女性日记flo-大姨妈助手、排卵期安全期日历
^https?:\/\/api.owhealth.com\/subscriptions\/v1\/apple.*$ url script-response-body https://raw.githubusercontent.com/WeiGiegie/666/main/flo.js
[mitm]
hostname = api.owhealth.com
*
*
*/
if ($request.url.includes('https://api.owhealth.com/subscriptions/v1/apple')) {
let body = JSON.parse($response.body);
Object.assign(body, {
status: "active",
transaction_id: 000000000652310,
used_intro_gr1: true,
auto_renew_status: false,
expiration_date: "2999-09-09T06:42:17Z",
features: [
"premium",
"premium_partnership",
"report_for_doctor",
"symptom_checker"
],
subscription_manager: null,
});
$done({
body: JSON.stringify(body)
});
}