MessengerExtensions.requestCloseBrowser()
此方法屬於 Messenger 擴充功能 SDK 的一部分。若要瞭解在網站中加入 SDK 的相關資訊,請參閱新增 Messenger 擴充功能 SDK。
可用性
這個 API 僅適用 Messenger 113 版 (Android0) 和 114 版 (iOS) 中使用。
若要確認這個 API 在特定用戶端上的可用性,請調用 getSupportedFeatures()
並在回應中找出 context
屬性。
The requestCloseBrowser()
method allows you to programmatically close the webview and return the user to the conversation in Messenger.
MessengerExtensions.requestCloseBrowser(success, error)
MessengerExtensions.requestCloseBrowser(function success() {
// webview closed
}, function error(err) {
// an error occurred
});
Parameter | Type | Description |
---|---|---|
| Function | Success callback function. |
| Function | Error callback function. |