{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-@l10n/ja/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"ブラウザプロファイル","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"ブラウザプロファイル","__idx":0},"children":["ブラウザプロファイル"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["MoreLogin Local API を使用して、検出防止ブラウザー プロファイルをプログラムで管理します。"]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"概要","__idx":1},"children":["概要"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["ブラウザ API を使用すると、固有のフィンガープリントを使用してブラウザ プロファイルを作成、起動、制御できます。マルチアカウント管理、Web スクレイピング、自動テストなどの自動化シナリオ向けに設計されています。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["ベース URL"]},": ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["http://127.0.0.1:40000"]}]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["ローカル API は、MoreLogin デスクトップ アプリと一緒にマシン上で実行されます。すべてのリクエストは同じマシンから発信される必要があります。"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"能力","__idx":2},"children":["能力"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"リソース"},"children":["リソース"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"説明"},"children":["説明"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"キー操作"},"children":["キー操作"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["ブラウザ プロファイル"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["検出防止ブラウザー インスタンス"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["作成、開始、停止、削除、変更、ステータスの確認"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["プロキシ"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["プロファイルのプロキシ構成"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["プロキシの追加、更新、削除、一覧表示"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["グループ"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["プロファイルをグループに整理する"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["グループの作成、編集、削除"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["タグ"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["プロファイルにタグを付ける"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["タグの作成、編集、削除"]}]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"簡単な例","__idx":3},"children":["簡単な例"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Chrome ブラウザ プロファイルを作成して開始します。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# 1. Create a profile\ncurl -X POST \"http://127.0.0.1:40000/api/env/create/quick\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"browserTypeId\": 1, \"operatorSystemId\": 1, \"quantity\": 1}'\n\n# 2. Start the profile (use envId from step 1)\ncurl -X POST \"http://127.0.0.1:40000/api/env/start\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"envId\": \"YOUR_ENV_ID\"}'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["開始すると、次のものを受け取ります。"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["デバッグ ポート"]}," — Selenium/Puppeteer 接続用"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["WebDriver パス"]}," — ブラウザ自動化用"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"自動化の統合","__idx":4},"children":["自動化の統合"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"セレン","__idx":5},"children":["セレン"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"python","header":{"controls":{"copy":{}}},"source":"from selenium import webdriver\n\noptions = webdriver.ChromeOptions()\noptions.debugger_address = \"127.0.0.1:DEBUG_PORT\"\ndriver = webdriver.Chrome(\n    executable_path=\"WEBDRIVER_PATH\",\n    options=options\n)\ndriver.get(\"https://example.com\")\n","lang":"python"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"人形遣い","__idx":6},"children":["人形遣い"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"javascript","header":{"controls":{"copy":{}}},"source":"const puppeteer = require('puppeteer');\n\nconst browser = await puppeteer.connect({\n  browserWSEndpoint: 'ws://127.0.0.1:DEBUG_PORT'\n});\nconst page = await browser.newPage();\nawait page.goto('https://example.com');\n","lang":"javascript"},"children":[]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"要件","__idx":7},"children":["要件"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["MoreLogin デスクトップ アプリ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["v2.15.0+"]}," がインストールされ実行されている"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["MoreLogin アカウントにログインしました"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["リクエストはローカルマシンから発信される必要があります"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["注意"]},": Local API は Cloud Phone 管理エンドポイントもサポートしています。 Cloud Phone の操作には、リモート アクセス機能として ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/ja/api-reference/cloud-phone"},"children":["オープン API"]}," を使用することをお勧めします。"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["認証の詳細については、",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/ja/api-reference/getting-started/authentication"},"children":["認証"]}," をご覧ください。"]}]},"headings":[{"value":"ブラウザプロファイル","id":"ブラウザプロファイル","depth":1},{"value":"概要","id":"概要","depth":2},{"value":"能力","id":"能力","depth":2},{"value":"簡単な例","id":"簡単な例","depth":2},{"value":"自動化の統合","id":"自動化の統合","depth":2},{"value":"セレン","id":"セレン","depth":3},{"value":"人形遣い","id":"人形遣い","depth":3},{"value":"要件","id":"要件","depth":2}],"frontmatter":{"seo":{"title":"ブラウザプロファイル"}},"lastModified":"2026-06-10T11:47:34.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/ja/api-reference/browser","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}