# 点击行为限制
为保证用户获得更顺畅的小程序使用体验,部分接口我们限制了调用的场景,只有在用户与游戏发生点击交互时,才能正确的触发。
# 限制列表
在小游戏中,这些接口会被限制只有在点击行为时才能正确触发:
- wx.navigateToMiniProgram
- wx.requestSubscribeMessage
- wx.requestSubscribeSystemMessage
- wx.openSetting
- wx.openCustomerServiceChat
- wx.openAppAuthorizeSetting
- wx.openSystemBluetoothSetting
- wx.openChannelsActivity
- wx.openChannelsEvent
- wx.openChannelsLive
- wx.openChannelsUserProfile
- wx.operateGameRecorderVideo
- wx.reserveChannelsLive
- wx.startHandoff
- wx.getPhoneNumber
# 限制方式
在小游戏中,上述接口,只有在以下接口的回调中才能正常使用,即响应用户的点击行为:
# 错误信息
如果不在上述场景中调用限制接口,则会调用失败,并返回can only be invoked by user TAP gesture
或require user interaction (only in touchend event)