我有一个未过期的页面访问令牌,并尝试使用Send API向自己发送一条消息(知道我的PSID),当我用resttesttest.com对其进行测试时,它返回200,但是当我尝试执行jQuery POST,它不会发送任何消息-是否可以通过这种方式使用Send API?
var message = { "messaging_type": "RESPONSE",
“收件人”:{ “ID”:”*****” }, “信息”:{ “ text”:“你好,世界!” }
}
$.post( "https://graph.facebook.com/v3.3/me/conversations?
access_token=****", message, {success:
function(){}}, {dataType: "json"} );
//I've tried both {message} and message as seen here