我正在使用phonegap v5.1.1构建应用。我通过post方法使用graph api时遇到了困难,我正在使用phongap-facebook-plugin。
在他们的文档中,它可以像:
一样使用facebookConnectPlugin.api(String requestPath, Array permissions, Function success, Function failure)
但我不知道在哪里放方法:" POST"在它。
我的意思是如何做到这一点:
FB.api("/{object_id}/likes",
"POST",
function (response) {
});
和这个
FB.api(
"/{comment-id}",
"POST",
{
"message": "This is a test comment"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
在上面提到的这个插件中。 感谢