32992834ee
- Xiaohongshu search via local MCP service (opt-in, zero impact if service not running) - Reddit public JSON fallback (works with zero API keys) - Reddit priority: ScrapeCreators -> OpenAI -> public fallback - Updated env.py: Reddit always available via public fallback Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
1.4 KiB
JavaScript
36 lines
1.4 KiB
JavaScript
import { TwitterClient } from '../lib/twitter-client.js';
|
|
export function registerUnbookmarkCommand(program, ctx) {
|
|
program
|
|
.command('unbookmark')
|
|
.description('Remove bookmarked tweets')
|
|
.argument('<tweet-id-or-url...>', 'Tweet IDs or URLs to remove from bookmarks')
|
|
.action(async (tweetIdOrUrls) => {
|
|
const opts = program.opts();
|
|
const timeoutMs = ctx.resolveTimeoutFromOptions(opts);
|
|
const { cookies, warnings } = await ctx.resolveCredentialsFromOptions(opts);
|
|
for (const warning of warnings) {
|
|
console.error(`${ctx.p('warn')}${warning}`);
|
|
}
|
|
if (!cookies.authToken || !cookies.ct0) {
|
|
console.error(`${ctx.p('err')}Missing required credentials`);
|
|
process.exit(1);
|
|
}
|
|
const client = new TwitterClient({ cookies, timeoutMs });
|
|
let failures = 0;
|
|
for (const input of tweetIdOrUrls) {
|
|
const tweetId = ctx.extractTweetId(input);
|
|
const result = await client.unbookmark(tweetId);
|
|
if (result.success) {
|
|
console.log(`${ctx.p('ok')}Removed bookmark for ${tweetId}`);
|
|
}
|
|
else {
|
|
failures += 1;
|
|
console.error(`${ctx.p('err')}Failed to remove bookmark for ${tweetId}: ${result.error}`);
|
|
}
|
|
}
|
|
if (failures > 0) {
|
|
process.exit(1);
|
|
}
|
|
});
|
|
}
|
|
//# sourceMappingURL=unbookmark.js.map
|