このドキュメントが更新されました。
日本語への翻訳がまだ完了していません。
英語の最終更新: 2019/03/11
日本語の最終更新: 2018/01/15

Getting Supported Messenger Extensions SDK Features

Features of the Messenger Extensions SDK available in the webview vary depending on what version of the Messenger bot the webview is opened in. For this reason, it is important to check that the feature you are using is available when the webview is opened.

To do this. you can call getSupportedFeatures() to get an array of features that are supported on the current client. If a feature you depend on is not available, you can use this opportunity to fail gracefully with a message telling the user to upgrade.

Supported Features

The following Messenger Extensions SDK features are available in the webview:

機能説明

payments

このクライアントで、決済がサポートされているかどうか。

sharing_broadcast

このクライアントで、beginShareFlow()を使用してライブ配信フローを開始する機能を利用できるかどうか。

sharing_direct

このクライアントで、beginShareFlow()を使用して現在のスレッドをシェアする機能を利用できるかどうか。

sharing_open_graph

Open Graphメッセージのシェア機能を利用できるかどうか。

context

getContext()をウェブビューで利用できるかどうか。

Example Request

For a complete list of method parameters, see the getSupportedFeatures() Reference.

MessengerExtensions.getSupportedFeatures(function success(result) {
  let features = result.supported_features;
}, function error(err) {
  // error retrieving supported features
});

Example Response

getSupportedFeatures() will return an array containing the featured supported in the current webview to the success callback. For details on the returned array values, see Features below.

{
  "supported_features":[
    "payments",
    "context",
    "sharing_broadcast",
    "sharing_direct",
    "sharing_open_graph"
  ]
}