찾다

 >  Q&A  >  본문

javascript - 用js获取微信access_token,请教各位大神。

我用get方式获取 控制台出现Uncaught SyntaxError: Unexpected token :
并且走到error,输出Object {readyState: 4, status: 200, statusText: "load"}

$.ajax({
                url:'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=appid&secret=secret',
                type:"get",
                dataType:"jsonp",
                async: true,
                success: function (result) {
                   
                },
                error: function (result) {
                    console.log(result);
                }
            });
PHP中文网PHP中文网2773일 전329

모든 응답(2)나는 대답할 것이다

  • 高洛峰

    高洛峰2017-04-11 11:04:12

    后台获取,

    secret直接暴露出来,你确定要这样吗???

    회신하다
    0
  • 怪我咯

    怪我咯2017-04-11 11:04:12

    试试

    fetch('https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=123',{mode:'no-cors'})

    회신하다
    0
  • 취소회신하다