Branchout 如何自定义他们的请求对话框消息?对此没有选择。
文档https://developers.facebook.com/docs/reference/dialogs/requests/没有提到任何额外的参数,只有 app_id、redirect_uri、message、to、filters、exclude_ids、max_recipients、data、title。
作为一个新用户,我不能发布图片。这里是链接:http: //i.imgur.com/37tju.png ,
我使用以下 javascript 调用 facebook 函数:
FB.ui({
method : 'apprequests',
message : 'Message itself',
title : 'Title message',
display : 'iframe',
access_token : '(access_token)',
to : uids
}, function(response) {
if (response)
{
// handle callback.....
// (...)
}
});