次のような場合に使用: Val(プログラムコード)のHTTPエンドポイント(ウェブ上の操作入口)をインターネット全体に公開したくない場合。具体的には、アプリへのアクセスを特定のチームに限定したい、エンドポイントがログインページにリダイレクト(自動転送)される理由を理解したい、webhook(プログラム同士の連携機能)を許可したい、またはアプリを閲覧しているVal Townユーザーを特定したい場合に役立ちます。 このスキルではアプリアクセス設定(`httpPrivacy`)、組織権限の付与、自動化用のバイパストークン、および`X-Val-Town-User`ヘッダー(ユーザー識別情報)をカバーしています。Val内で独自のログイン機能を構築する場合は、代わりに`oauth`スキルをご覧ください。
Use when a val's HTTP endpoints should not be open to the whole internet — limiting an app to a team, understanding why an endpoint redirects to a login page, letting a webhook through, or identifying which Val Town user is viewing an app. Covers app access (`httpPrivacy`), org grants, bypass tokens for automation, and the `X-Val-Town-User` identity header. For building your own login flow inside a val, see the `oauth` skill instead.
Val(プログラムの実行単位)には、独立した2つのアクセス設定があります。一方を変更してももう一方は変更されません:
privacy: public / unlisted / private)— val.town上でソースコードを読むことができる人httpPrivacy: public / restricted)— Valが提供するHTTP通信の接続口を使用できる人Valは、非公開コードで広く開かれた接続口を持つことも、公開コードで厳密に制限された接続口を持つこともできます。update_valのprivacyフィールドは最初の設定のみを変更し、アプリアクセスはset_http_privacyで変更します。
制限付きアプリアクセスは、この機能を有効にしている組織で利用可能です。そのような組織内で作成されたValは、デフォルトでrestrictedになる場合があります。新しく作成されたValの接続口が必ず開かれていると仮定せず、常にget_val_detail、list_vals、create_val、またはremix_valの応答からhttpPrivacyを読み取ってください。
「アプリにログインを必須にする」という目的に対して、異なる2つの方法があります:
std/oauth(oauthスキルを参照)— Valの内部で実行されます。ハンドラー(処理の仲介役)をラップして、Val Townアカウントを持つ誰もがログインできるようにします。セッション管理はあなたが制御でき、ユーザー単位の機能を構築できます。内部ツールでチームだけがアクセスすべき場合は制限付きアクセスを、Val Townのどのユーザーもログインでき、アプリが独自のログイン状態を管理する必要がある場合はstd/oauthを選択してください。
誤ってこの2つを組み合わせないでください。既に制限されているValにoauthMiddlewareを追加すると、訪問者が2回認証されることになります。制限されたValが誰が閲覧しているかを知る必要がある場合は、Oauthを追加する代わりに、以下の識別ヘッダーを使用してください。
アクセス権は個人ではなく組織に付与されます。閲覧者がアクセスできるのは、Valがある組織へのアクセス許可を持っているかつその閲覧者がその組織のメンバーである場合です。どちらか一方が削除されると、次のリクエストで即座にアクセスが失効します。セッション期間中のキャッシュはありません。
アクセス許可は以下から付与されます:
add_allowed_userで組織にアクセス許可を与え、list_allowed_usersで現在の許可を表示し、remove_allowed_userで取り消します。list_allowed_usersに表示されます。認証されていないリクエストは、Valに到達しません。プラットフォームは302リダイレクトでVal Townのログインまたは認可ページに誘導します。これが制限されたValをデバッグするときに最も一般的な混乱の原因です:
fetch_val_endpointが従わないリダイレクトを報告するcurlがレスポンス代わりにval.townへの302を表示する403エラーを受け取るこれらのどれもValのコードが壊れていることを意味しません。まずhttpPrivacyを確認してください。restrictedであれば、ゲートが正常に機能しています。set_http_privacyでValを公開にするか、呼び出し元の組織にアクセス許可を与えるか、バイパストークンを使用してください。
マシンはログインリダイレクトを完了できないため、ウェブフック(Stripe、GitHub、別のValの定時実行タスク)を受け取る制限されたValにはバイパストークン(そのValだけに限定された秘密鍵)が必要です。
create_bypass_tokenで作成してください。秘密鍵は1回だけ表示され、その後は取得できません。list_bypass_tokensとrevoke_bypass_tokenでトークンを管理します。
以下のどちらかの方法で提示します:
// ヘッダー(推奨 — ログやリファラーから秘密鍵を隠す)
await fetch(url, { headers: { "X-Val-Town-Access": Deno.env.get("MY_BYPASS_TOKEN")! } });
// クエリパラメーター(URLだけを受け取るサービス用。例:一部のウェブフック設定)
await fetch(`${url}?val_town_access=${Deno.env.get("MY_BYPASS_TOKEN")}`);
プラットフォームはハンドラー実行前にヘッダーとクエリパラメーターを削除するため、コードはそれらを見ることがありません。バイパストークンを使用したリクエストは、閲覧者の身元情報を含みません。マシンからの匿名呼び出しです。
ゲートを通ってきた人間の閲覧者に対して、プラットフォームは短期有効な署名付きX-Val-Town-Userヘッダーを転送します。これは身元自体ではなく、Valが持つAPIトークン(Val Townがvaltown環境変数として注入)を使用して、閲覧者のプロフィールと交換する証票です:
const IDENTITY_HEADER = "X-Val-Town-User";
/** 閲覧者の公開プロフィールを返す、または存在しない場合はnullを返す */
async function getViewer(req: Request) {
const signed = req.headers.get(IDENTITY_HEADER);
if (!signed) return null;
const res = await fetch("https://api.val.town/v3/val/viewer", {
headers: {
Authorization: `Bearer ${Deno.env.get("valtown")}`,
[IDENTITY_HEADER]: signed,
},
});
if (!res.ok) return null;
// { id, username, type, bio, profileImageUrl, url, links }
return await res.json();
}
重要なルール:
!で断定したり、null結果にインデックスでアクセスしないでください。上記の方式(X-Val-Town-Userと/v3/val/viewer交換)は現在の動作で、今後変わる可能性があります。ただし、3つのルールはどのような場合でも成立します。
| 作業 | ツール |
|---|---|
| 現在の設定を確認する | get_val_detail(httpPrivacyフィールド) |
| 接続口を公開または制限にする | set_http_privacy |
| アクセス可能な者を確認する | list_allowed_users |
| 組織へのアクセス許可を付与 / 取り消す | add_allowed_user / remove_allowed_user |
| 自動化用秘密鍵を作成 / 一覧表示 / 取り消す | create_bypass_token / list_bypass_tokens / revoke_bypass_token |
制限されたValはval.townによってのみiframe埋め込み可能(別のウェブサイトにページ内に埋め込むことができる状態)のため、外部サイトへの埋め込みはログイン状況に関わらずブラウザによってブロックされます。
A val has two independent access settings. Changing one does not change the other:
privacy: public / unlisted / private) — who can read the source on val.town.httpPrivacy: public / restricted) — who can call the val's HTTP endpoints.A val can have private code and a wide-open endpoint, or public code and a locked-down endpoint. update_val's privacy field only moves the first one; app access is changed with set_http_privacy.
Restricted app access is available to organizations that have the feature enabled. Vals created in such an org may default to restricted — always read httpPrivacy off a get_val_detail, list_vals, create_val, or remix_val response rather than assuming a new val's URL is open.
Two different things both sound like "make my app require a login":
std/oauth (see the oauth skill) runs inside your val: you wrap your handler, and anyone with a Val Town account can log in. You control the session and can build per-user features.Pick restricted access for an internal tool that only your team should reach. Pick std/oauth when any Val Town user may sign in and the app needs its own notion of a logged-in user.
Don't stack them by accident. Adding oauthMiddleware to an already-restricted val means the visitor authenticates twice — once at the gate, once in your code. If a restricted val needs to know who is viewing, use the identity header below instead of adding OAuth.
Access is granted to organizations, not individual people. A viewer gets in when the val has a grant to an org and that viewer is a member of it. Removing either one revokes access on the very next request — nothing is cached for the length of a session.
Grants come from:
add_allowed_user grants an org, list_allowed_users shows current grants, remove_allowed_user revokes one.list_allowed_users alongside direct grants.An unauthenticated request does not reach the val. The platform answers with a 302 redirect to a Val Town login or authorization page. This is the single most common source of confusion when debugging a restricted val:
fetch_val_endpoint reports a redirect it won't follow.curl shows a 302 to val.town instead of your response.403 explaining they need access to their organization.None of these mean the val's code is broken. Check httpPrivacy first — if it's restricted, the gate is doing its job. Make the val public with set_http_privacy, grant the caller's org, or use a bypass token.
Machines can't complete a login redirect, so a restricted val that receives webhooks (Stripe, GitHub, a cron job in another val) needs a bypass token — a secret scoped to that one val.
Create it with create_bypass_token; the secret is shown once and cannot be retrieved again. Manage tokens with list_bypass_tokens and revoke_bypass_token.
Present it either way:
// Header (preferred — keeps the secret out of logs and referrers)
await fetch(url, { headers: { "X-Val-Town-Access": Deno.env.get("MY_BYPASS_TOKEN")! } });
// Query param (for services that only accept a URL, e.g. some webhook configs)
await fetch(`${url}?val_town_access=${Deno.env.get("MY_BYPASS_TOKEN")}`);
The platform strips the header and the query param before your handler runs, so your code never sees them. A bypass-token request carries no viewer identity — it is an anonymous machine caller.
For a human viewer who came in through the gate, the platform forwards a short-lived signed X-Val-Town-User header. It is not the identity itself — exchange it for the viewer's profile using the val's own API token, which Val Town injects as the valtown environment variable:
const IDENTITY_HEADER = "X-Val-Town-User";
/** Returns the viewer's public profile, or null when there isn't one. */
async function getViewer(req: Request) {
const signed = req.headers.get(IDENTITY_HEADER);
if (!signed) return null;
const res = await fetch("https://api.val.town/v3/val/viewer", {
headers: {
Authorization: `Bearer ${Deno.env.get("valtown")}`,
[IDENTITY_HEADER]: signed,
},
});
if (!res.ok) return null;
// { id, username, type, bio, profileImageUrl, url, links }
return await res.json();
}
Rules that matter:
!-assert it or index into a null result.The transport above (X-Val-Town-User plus the /v3/val/viewer exchange) is how this works today and may change; the three rules hold regardless.
| Task | Tool |
|---|---|
| Check the current setting | get_val_detail (httpPrivacy field) |
| Make an endpoint public or restricted | set_http_privacy |
| See who has access | list_allowed_users |
| Grant / revoke an org | add_allowed_user / remove_allowed_user |
| Create / list / revoke automation secrets | create_bypass_token / list_bypass_tokens / revoke_bypass_token |
Restricted vals can only be iframed by val.town, so an embed of one on an external site will be blocked by the browser regardless of who's logged in.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。