> ## Documentation Index
> Fetch the complete documentation index at: https://docs.x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 政府エンドユーザー申請フォーム

> 政府・公的機関向けフォーム。機関情報、想定するユースケース、レビュー用のコンプライアンス情報を提供して、X API アクセスをリクエストします。

export const Form = ({src, width = "500", height = "1000"}) => {
  const maxWidth = `${parseInt(width, 10) || 500}px`;
  return <iframe className="form" src={src} height={height} style={{
    width: '100%',
    maxWidth
  }} frameborder="0" allowfullscreen>
    </iframe>;
};

<Form src="https://help.x.com/en/forms/xdev/government-end-user-request" />
