View in English

  • Apple Developer
    • 今すぐ始める

    「今すぐ始める」を詳しく見る

    • 概要
    • 学ぶ
    • Apple Developer Program

    最新情報

    • 最新ニュース
    • Hello Developer
    • プラットフォーム

    プラットフォームを詳しく見る

    • Appleプラットフォーム
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    特集

    • デザイン
    • 配信
    • ゲーム
    • アクセサリ
    • Web
    • Home
    • CarPlay
    • テクノロジー

    テクノロジーを詳しく見る

    • 概要
    • Xcode
    • Swift
    • SwiftUI

    特集

    • アクセシビリティ
    • App Intent
    • Apple Intelligence
    • ゲーム
    • 機械学習とAI
    • セキュリティ
    • Xcode Cloud
    • コミュニティ

    コミュニティを詳しく見る

    • 概要
    • 「Appleに相談」イベント
    • コミュニティによるイベント
    • デベロッパフォーラム
    • オープンソース

    特集

    • WWDC
    • Swift Student Challenge
    • デベロッパストーリー
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Center
    • ドキュメント

    ドキュメントを詳しく見る

    • ドキュメントライブラリ
    • テクノロジー概要
    • サンプルコード
    • ヒューマンインターフェイスガイドライン
    • ビデオ

    リリースノート

    • 注目のアップデート
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • ダウンロード

    ダウンロードを詳しく見る

    • すべてのダウンロード
    • オペレーティングシステム
    • アプリ
    • デザインリソース

    特集

    • Xcode
    • TestFlight
    • フォント
    • SF Symbols
    • Icon Composer
    • サポート

    サポートを詳しく見る

    • 概要
    • ヘルプガイド
    • デベロッパフォーラム
    • フィードバックアシスタント
    • お問い合わせ

    特集

    • アカウントヘルプ
    • App Reviewガイドライン
    • App Store Connectヘルプ
    • 近日導入予定の要件
    • 契約およびガイドライン
    • システムステータス
  • クイックリンク

    • イベント
    • ニュース
    • Forum
    • サンプルコード
    • ビデオ
 

ビデオ

メニューを開く メニューを閉じる
  • コレクション
  • すべてのビデオ
  • 利用方法

その他のビデオ

  • 概要
  • Summary
  • コード
  • Trust Insightsについて

    SNS詐欺や脅迫による被害を防ぐTrust Insightsについて解説します。この新しいフレームワークでは、プライバシー保護のための機械学習を利用し、ユーザーが高リスクな行動に誘導される可能性がある状況を検出します。Trust Insightsをアプリに統合し、シグナルを解釈して、プライバシーを尊重しながらユーザーを保護する適切な介入策を設計する方法を確認しましょう。

    関連する章

    • 0:00 - Introduction
    • 2:35 - Generating insights
    • 6:50 - Feedback requirements
    • 9:25 - Privacy
    • 10:34 - Best practices
    • 12:48 - Next steps

    リソース

    • TrustInsights
      • HDビデオ
      • SDビデオ

    関連ビデオ

    WWDC26

    • App Attestによるアプリの保護
  • このビデオを検索
    • 3:01 - Generating insights

      import TrustInsights
      
      let request = IsLikelyBeingCoachedInsight.request(schema: .version1, modelVersion: .current)
      let context = InsightEvaluator.InsightContext(operationCategory: .resourceUse,
                                                    requestedEvaluations: request)
      
      let evaluator = InsightEvaluator()
      guard try await evaluator.requestAuthorization(for: context) == .authorized else { return }
      
      let assessment = try await evaluator.requestEvaluation(context: context)
      do {
          try handleAssessment(assessment)
      } catch {
          // Handle error
      }
      
      assessment.reportConsumption(.usedIncreasedFriction)
    • 5:37 - Handling results for IsLikelyBeingCoachedInsight

      func handleAssessment(_ assessment: InsightEvaluation<IsLikelyBeingCoachedInsight>) throws {
      	switch try assessment.insight.outcome.get() {
      		case .unknown:
      		
      		case .medium:
      
      		case .high:
      
      		@unknown default:
      
      	}
      }
    • 7:05 - Real-time consumption feedback

      import TrustInsights
      
      let request = IsLikelyBeingCoachedInsight.request(schema: .version1, modelVersion: .current)
      let context = InsightEvaluator.InsightContext(operationCategory: .resourceUse,
                                                    requestedEvaluations: request)
      
      let evaluator = InsightEvaluator()
      guard try await evaluator.requestAuthorization(for: context) == .authorized else { return }
      
      let assessment = try await evaluator.requestEvaluation(context: context)
      do {
          try handleAssessment(assessment)
      } catch {
          // Handle error
      }
      
      assessment.reportConsumption(.usedIncreasedFriction)
    • 0:00 - Introduction
    • Meet Trust Insights, a new iOS 27 framework that helps your app detect coercion and social engineering.

    • 2:35 - Generating insights
    • Integrating Trust Insights with its client-side Swift API — declaring the entitlement, building a parameter pack of requested insights, and using the InsightEvaluator with an operation category that determines which model logic applies.

    • 6:50 - Feedback requirements
    • The two required types of feedback that keep insights accurate — mandatory real-time consumption feedback reporting how your app responded, and offline feedback for transactions that later prove fraudulent.

    • 9:25 - Privacy
    • Understand how Trust Insights minimizes data, keeps signals on device, and gives users full control.

    • 10:34 - Best practices
    • Learn where Trust Insights adds the most value and how to combine it with your existing risk logic.

    • 12:48 - Next steps
    • Adopting Trust Insights — identify moments where it can work alongside your existing logic, follow the documentation and best practices, and register on Apple Business Register to learn about Partner Data Services.

Developer Footer

  • ビデオ
  • WWDC26
  • Trust Insightsについて
  • メニューを開く メニューを閉じる
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • SF Symbols
    メニューを開く メニューを閉じる
    • アクセシビリティ
    • アクセサリ
    • Apple Intelligence
    • App Extension
    • App Store
    • オーディオとビデオ(英語)
    • 拡張現実
    • デザイン
    • 配信
    • 教育
    • フォント(英語)
    • ゲーム
    • ヘルスケアとフィットネス
    • アプリ内課金
    • ローカリゼーション
    • マップと位置情報
    • 機械学習とAI
    • オープンソース(英語)
    • セキュリティ
    • SafariとWeb(英語)
    メニューを開く メニューを閉じる
    • 英語ドキュメント(完全版)
    • 日本語ドキュメント(一部トピック)
    • チュートリアル
    • ダウンロード
    • フォーラム(英語)
    • ビデオ
    Open Menu Close Menu
    • サポートドキュメント
    • お問い合わせ
    • バグ報告
    • システム状況(英語)
    メニューを開く メニューを閉じる
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles(英語)
    • フィードバックアシスタント
    メニューを開く メニューを閉じる
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program(英語)
    • Mini Apps Partner Program
    • News Partner Program(英語)
    • Video Partner Program(英語)
    • セキュリティ報奨金プログラム(英語)
    • Security Research Device Program(英語)
    Open Menu Close Menu
    • Appleに相談
    • Apple Developer Center
    • App Store Awards(英語)
    • Apple Design Awards
    • Apple Developer Academy(英語)
    • WWDC
    最新ニュースを読む。
    Apple Developerアプリを入手する。
    Copyright © 2026 Apple Inc. All rights reserved.
    利用規約 プライバシーポリシー 契約とガイドライン