MessengerExtensions.getSupportedFeatures()
วิธีการนี้เป็นส่วนหนึ่งของ SDK ส่วนขยายของ Messenger สำหรับข้อมูลเกี่ยวกับการรวม SDK ไว้ในไซต์ของเรา โปรดดู “เพิ่ม SDK ส่วนขยายของ Messenger”
MessengerExtensions.getSupportedFeatures(success, error)
MessengerExtensions.getSupportedFeatures(function success(result) {
let features = result.supported_features;
}, function error(err) {
// error retrieving supported features
});
Parameter | Type | Description |
---|---|---|
| Function | Success callback function. Receives an array of features supported in the current webview. |
| Function | Error callback function. Called if Messenger was unable to retrieve supported features. |
An object with the supported features is returned to the success callback.
{
"supported_features":[
"payments",
"context",
"sharing_broadcast",
"sharing_direct",
"sharing_open_graph"
]
}
Property | Type | Description |
---|---|---|
| Array<String> | A list of features supported in the current webview. For details, see Features |
The following values may be returned in the supported_features
array:
คุณสมบัติ | คำอธิบาย |
---|---|
| ว่ารองรับการชำระเงินในไคลเอ็นต์หรือไม่ |
| การใช้ |
| การใช้ |
| สามารถแชร์ข้อมูลกราฟเปิดได้ |
|
|