Enterprise WeChat cannot be lifted to open the personal information page interface (openUserProfile) on the ios model


wx.qy.openUserProfile({
      type: 1,//1表示该userid是企业成员,2表示该userid是外部联系人
      userid: "wmEQlEGwAAHxbWYDOK5u3Af13xlYAAAA", //可以是企业成员,也可以是外部联系人
      success: function(res) {
        // 回调
      }
});

 

 The problem encountered: calling the interface to open the personal information page can be opened on Android phones, but cannot be opened on iOS

Later, the problem is that I passed the value type type as a string type, but actually need to pass a number type (the Android phone can jump normally after passing a string), and pay more attention to the parameter type when passing parameters! ! !

 

Guess you like

Origin blog.csdn.net/qq_43532275/article/details/131845018