这有什么不妥:
var stringinsta=JSON.parse({ "access_token":"129261**5ea59a4da481c65",
"user":{
"username":"carlos_bellesso",
"bio":"",
"website":"",
"profile_picture":"http://images.ak.instagram.com/profiles/profile_12921998589647.jpg",
"full_name":"","id":"1296618"}
} );
错误是:意外令牌o。
答案 0 :(得分:5)
它无效,因为您将对象传递给JSON.parse()
,但它需要一个json字符串 - >你已经有了这个对象,所以不需要解析任何东西。
如果要将对象转换为json字符串,请使用JSON.stringify()