我用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);
}
});
后台获取,
secret直接暴露出来,你确定要这样吗???
试试