我想知道如何从Android应用程序向我的所有Facebook好友发送应用程序请求。我试过图API。但是,无法完成它。
https://graph.facebook.com/apprequests?ids=friend1,friend2&message='Hi'&method=post&access_token=ACCESS_TOKEN
我知道这是一个重复的问题。但是,还没找到答案。 我在上面的API上遇到了这个错误。
"All users in param ids must have accepted TOS."
我希望有一种方法可以通过点击向移动设备上的所有朋友发送应用请求。请分享。
答案 0 :(得分:5)
您收到的错误消息(“param ID中的所有用户必须已接受TOS”)是因为您尝试将应用生成的请求发送给未与您的应用连接的用户。
随请求对话框和应用生成的请求发送的请求不同,您无法使用应用生成的请求邀请用户访问您的应用。
通过图表api无法发送Facebook应用请求。您可以使用app requests java-script dialog发送请求,您只需在“to”属性中指定用户的ID,如文档中所述。
示例功能:
<script>
FB.init({ appId: '**appId**', status: true, cookie: true, xfbml : true });
function sendRequest(to) {
FB.ui({method: 'apprequests', to: to, message: 'You should learn more about this awesome site.', data: 'tracking information for the user'});
return false;
}
</script>
然后只需将每个图像的onclick连接到类似onclick="return sendRequest('**friendId**');"
此外,您可以在javascript中调用此功能:它会为所有朋友提供照片。也是当前正在使用相同应用的一群朋友。您可以向其中任何人发送请求。
function sendRequestViaMultiFriendSelector() {
FB.ui({
method: 'apprequests',
message: "You should learn more about this awesome site."
});
}
请参阅Facebook Friend Request - Error - 'All users in param ids must have accepted TOS'
答案 1 :(得分:0)
您是否在developer.facebook.com上看过“Hackbook”的演示?
您可以参考HACKBOOK APP REQUEST FROM HERE.
您可以通过以下代码将应用请求发布到 ONLY ONE 朋友。
代码:
Bundle params = new Bundle();
JSONObject attachment = new JSONObject();
JSONObject properties = new JSONObject();
JSONObject prop1 = new JSONObject();
JSONObject prop2 = new JSONObject();
JSONObject media = new JSONObject();
JSONStringer actions = null;
try {
attachment.put("name", "YOUR_APP");
attachment.put("href", "http://www.google.com/");
attachment.put("description", "ANY_TEXT");
media.put("type", "image");
media.put("src", "IMAGE_LINK");
media.put("href", "http://www.google.com/");
attachment.put("media", new JSONArray().put(media));
prop1.put("text", "www.google.com");
prop1.put("href", "http://www.google.com");
properties.put("Visit our website to download the app", prop1);
/* prop2.put("href", "http://www.google.com");
properties.put("iTunes Link ", prop2);*/
attachment.put("properties", properties);
Log.d("FACEBOOK", attachment.toString());
actions = new JSONStringer().object()
.key("name").value("APP_NAME")
.key("link").value("http://www.google.com/").endObject();
} catch (JSONException e) {
e.printStackTrace();
}
System.out.println("ACTIONS STRING: "+actions.toString());
System.out.println("ATTACHMENT STRING: "+attachment.toString());
params.putString("actions", actions.toString());
params.putString("attachment", attachment.toString()); // Original
params.putString("to", "YOUR_FRIEND_FACEBOOK_ID");
Utility.mFacebook.dialog(getParent(), "stream.publish", params,new PostDialogListener());
public class PostDialogListener extends BaseDialogListener {
@Override
public void onComplete(Bundle values) {
final String postId = values.getString("post_id");
if (postId != null) {
Toast.makeText(getApplicationContext(), ""+getResources().getString(R.string.facebook_response_msg_posted), Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(getApplicationContext(), ""+getResources().getString(R.string.facebook_response_msg_not_posted), Toast.LENGTH_SHORT).show();
}
}
}
如果你想只在一个朋友的墙上张贴Apprequest,上面的代码就是完美的。如果你想发布所有内容,那么你必须制作asynckTask,它运行所有朋友发布并在所有墙上发布应用程序请求。
希望你明白这一点。
<强>更新强>
这是php中的链接,它已经完成了向所有facebook朋友发送请求的相同工作。 链接是:HERE
并且在这里明确解释说,它是由Facebook发送朋友请求超过15-20个朋友。链接是:HERE
现在,您只需要一个选项就是,使用AsyncTask中的上述代码将朋友请求逐个发送给所有朋友。
希望你现在更好理解。
请评论你到目前为止所取得的成就。
感谢。