>백엔드 개발 >PHP 튜토리얼 >javascript - 为何微信JSSDK中添加"查看公众号"按钮无效?

javascript - 为何微信JSSDK中添加"查看公众号"按钮无效?

WBOY
WBOY원래의
2016-06-06 20:30:541262검색

调试模式下所有操作都无报错,状态为'ok'
用户通过网页认证snsapi_base方式跳转到页面里
始终无法显示"查看公众号"按钮

显示查看公众号按钮是否还有其他隐形的限制规则?

<code>js</code><code>wx.config({
        debug: true, // 开启调试模式
        appId: '{$appID}',
        timestamp: '{$timestamp}',
        nonceStr: '{$nonceStr}',
        signature: '{$signature}',
        jsApiList: ['hideMenuItems', 'showMenuItems', 'onMenuShareTimeline', 'onMenuShareAppMessage']
    });
</code>
<code>wx.ready(function () {
        wx.showMenuItems({
            menuList: [
                'menuItem:profile', // 添加查看公众号
                'menuItem:addContact'
            ]
        });

    });
</code>

回复内容:

调试模式下所有操作都无报错,状态为'ok'
用户通过网页认证snsapi_base方式跳转到页面里
始终无法显示"查看公众号"按钮

显示查看公众号按钮是否还有其他隐形的限制规则?

<code>js</code><code>wx.config({
        debug: true, // 开启调试模式
        appId: '{$appID}',
        timestamp: '{$timestamp}',
        nonceStr: '{$nonceStr}',
        signature: '{$signature}',
        jsApiList: ['hideMenuItems', 'showMenuItems', 'onMenuShareTimeline', 'onMenuShareAppMessage']
    });
</code>
<code>wx.ready(function () {
        wx.showMenuItems({
            menuList: [
                'menuItem:profile', // 添加查看公众号
                'menuItem:addContact'
            ]
        });

    });
</code>

看一下你的公众好是否有权限。

http://github.com/thenbsp/Wechat

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.