DIYgod/RSSHub · error · ConfigNotFoundError
pianyuan Cookie已失效
Error message
pianyuan Cookie已失效
What it means
Error "pianyuan Cookie已失效" thrown in DIYgod/RSSHub.
Source
Thrown at lib/routes/pianyuan/utils.ts:83
headers: {
Cookie: cookie,
},
});
// set cookie
const set_cookie = response.headers['set-cookie'];
if (set_cookie) {
for (const e of set_cookie) {
if (e.includes('security_session_verify')) {
cache.set(security_key, e.split(';', 1)[0]);
} else if (e.includes('PHPSESSID')) {
cache.set(PHPSESSID_key, e.split(';', 1)[0]);
} else if (e.includes('py_loginauth')) {
cache.set(loginauth_key, e.split(';', 1)[0]);
}
}
}
if (response.data.includes('会员登录后才能访问')) {
throw new ConfigNotFoundError('pianyuan Cookie已失效');
}
return response;
}
export default { ProcessFeed, request };
View on GitHub (pinned to bed535e087)
Solutions
- Obtain a fresh pianyuan cookie and update the configuration, then retry.
When it happens
Trigger: The configured pianyuan cookie has expired or been invalidated by the site.
Common situations: See trigger scenarios.
AI-assisted analysis of DIYgod/RSSHub@bed535e087 (2026-08-12).
Data as JSON: /api/errors/a58f6854ece86d2a.
Report an issue: GitHub.