我正在请求一个带有jQuery $.ajax
. 我将令牌作为 HTTP 响应:
oauth_token=TX5AybIM&oauth_token_secret=g6WMacNyJy0AkJYEtCP1VOjdZB9e9ksh&oauth_callback_confirmed=true
控制台上的错误消息:
ReferenceError: invalid assignment left-hand side
和
SyntaxError: identifier starts immediately after numeric literal
我希望能够处理我的 OAauth 授权响应。
//Request Access Token
$.ajax({
url: "http://localhost:5000/oauth/request_token",
type: "GET",
dataType: "text",
jsonp: false,
cache: true,
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
data: params_get,
processData: false,
cache : true,
success: function (data) {
console.log("success");
alert(data);
},
abort: function (data) {
console.log(data);
console.log("abort");
},
error: function (data) {
console.log("error");
alert(data);
}
});