> ## 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" />
