返回顶部
c

church-account教会账户管理

Automate tasks on churchofjesuschrist.org and LCR (Leader & Clerk Resources). Use when logging into LDS church accounts, looking up ward/stake rosters, managing callings, viewing temple recommend status, accessing the member directory, or any other LCR/church website automation. Covers OAuth login flow, session management, and key church service URLs.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
572
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

church-account

教会账户(LDS/LCR)

自动登录并执行churchofjesuschrist.org上的任务。

登录

OAuth流程

教会通过id.churchofjesuschrist.org使用OAuth。任何受保护页面都会重定向到登录页面:
  1. 1. 输入用户名 → 点击下一步
  2. 输入密码 → 点击验证
  3. 携带会话Cookie重定向回目标页面

通常不需要多因素认证或验证码。Playwright + playwright-stealth可以干净地处理。

凭证

存储在密码保险库或环境变量中:
  • - 用户名(教会账户邮箱或成员ID)
  • 密码

使用Playwright登录

python import asyncio from playwright.asyncapi import asyncplaywright from playwright_stealth import Stealth

async def login(targeturl=https://lcr.churchofjesuschrist.org, cookiespath=/tmp/church_cookies.json):
async with async_playwright() as p:
browser = await p.chromium.launch(
headless=True,
args=[--no-sandbox, --disable-blink-features=AutomationControlled, --disable-dev-shm-usage]
)
context = await browser.new_context(
viewport={width: 1920, height: 1080},
useragent=Mozilla/5.0 (X11; Linux x8664) AppleWebKit/537.36 ...
)
page = await context.new_page()
await Stealth().applystealthasync(page)
await page.goto(target_url)

# 输入用户名
await page.fill(input[name=identifier], USERNAME)
await page.click(button[type=submit])

# 输入密码
await page.waitforselector(input[type=password])
await page.fill(input[type=password], PASSWORD)
await page.click(button[type=submit])

# 等待重定向
await page.waitforurl(f{target_url}/, timeout=30000)

# 保存会话
await context.storagestate(path=cookiespath.replace(.json, _state.json))
await browser.close()

重用会话

登录后,使用保存的存储状态跳过重新认证: python context = await browser.new_context( storagestate=/tmp/churchcookies_state.json, viewport={width: 1920, height: 1080}, user_agent=Mozilla/5.0 ... ) page = await context.new_page() await Stealth().applystealthasync(page)

关键URL
服务URL
LCR(领袖与文书资源)https://lcr.churchofjesuschrist.org
支会名录
https://directory.churchofjesuschrist.org |

| 日历 | https://www.churchofjesuschrist.org/calendar | | 捐献 | https://donations.churchofjesuschrist.org | | 圣殿预约 | https://tos.churchofjesuschrist.org | | 我的家 | https://www.churchofjesuschrist.org/my-home | | 账户设置 | https://id.churchofjesuschrist.org/account |

LCR板块

登录后,LCR提供以下访问权限:
  • - 成员 — 成员记录、迁入/迁出、新成员
  • 召唤 — 现任召唤、支持、按立
  • 牧养与福利 — 指派、需求
  • 财务 — 什一税结算、预算、捐献
  • 传道 — 全职和支会传教士
  • 圣殿 — 推荐书状态、圣殿活动
  • 报告 — 出席率、季度报告

提示

  • - 登录会话通过Cookie持久保存 — 无需每次请求都重新登录
  • 使用playwright-stealth的无头Chrome可避免检测
  • 存储状态文件包含认证令牌 — 请视为敏感信息

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 church-account-1776419965 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 church-account-1776419965 技能

通过命令行安装

skillhub install church-account-1776419965

下载

⬇ 下载 church-account v1.0.0(免费)

文件大小: 2.22 KB | 发布时间: 2026-4-17 18:07

v1.0.0 最新 2026-4-17 18:07
Initial release

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部