使用Phonegap FB 集成+ Sencha Touch获得无效的 JSON 响应:
{"请求":"12345678","to%5B0%5D":"12345678"}
看起来像一些拙劣的编码试图返回“到”数组。
FB.ui({
method: 'apprequests',
message: (msg) ? msg : 'Start using MyApp',
display: 'touch'
},
function(response) {
console.log(JSON.stringify(response));
if(response) {
} else {
console.log('Error parsing FB request response');
}
});
谢谢,史蒂夫