{{ APP_NAME }}

v{{ APP_VERSION }} - Instagram コメント取得
{{ stats.media }}
取得済み投稿
{{ stats.comments }}
コメント
{{ stats.users }}
コメントユーザー
{% include '_nav.html' %}

コメントを取得

{% set _ps = plan_status %} {% set _bonus = _ps.bonus_remaining or 0 %} {% set _ai_bonus = _ps.ai_bonus_remaining or 0 %} {% set _quota_total = _ps.monthly_quota + _bonus %} {% set _ai_quota_total = _ps.ai_monthly_quota + _ai_bonus %} {% set _quota_pct = (100 * _ps.used_this_month / _quota_total ) | round(1) if _quota_total else 0 %} {% set _ai_pct = (100 * _ps.ai_used_this_month / _ai_quota_total) | round(1) if _ai_quota_total else 0 %}
現在のプラン: {{ _ps.plan_label }} (月額 ¥{{ '{:,}'.format(_ps.price_jpy) }})
⚙ プラン変更 →
💬 コメント: {{ '{:,}'.format(_ps.used_this_month) }} / {{ '{:,}'.format(_ps.monthly_quota) }}{% if _bonus > 0 %} + 追加 {{ '{:,}'.format(_bonus) }}{% endif %} ({{ _quota_pct }}%)
🤖 AI判定: {{ '{:,}'.format(_ps.ai_used_this_month) }} / {{ '{:,}'.format(_ps.ai_monthly_quota) }}{% if _ai_bonus > 0 %} + 追加 {{ '{:,}'.format(_ai_bonus) }}{% endif %} ({{ _ai_pct }}%)
{% if not license_status.valid %}
🔐 ライセンス未認証です。⚙ 設定からライセンスキーを登録してください。
まだお持ちでない方は 公式サイトでプラン購入
{% endif %} {% if not _ps.api_key_set %}
⚠ サーバー設定エラー。ご利用にはアプリ管理者の設定が必要です。
{% endif %}
※ 取得対象は公開アカウントの投稿のみです。

👤 ユーザー全体から取得(期間指定可)

指定ユーザーの全投稿(または期間内)に対して、それぞれのコメントを一括取得します。 対象投稿が多い場合に備えて期間と上限を指定してください。
コスト概算: 投稿一覧 1ページ ≒ 12投稿で 1 credit、各投稿のコメントは別途 1〜10 credits(コメント数次第)

🎯 特定ユーザー間のやりとり抽出

誰が誰の投稿にコメントしたかだけを抽出します。
⚠ Instagram は直接検索が不可能なため、宛先ユーザーの全投稿を走査します (1投稿あたり 1API消費)。 投稿数の多い相手だとコスト/時間がかかるため、期間や投稿数を絞って使うことを推奨。