Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我需要将图像和消息发布到多个朋友的墙上。
我已经看到有关此问题的 stackoverflow 帖子。我发现需要批处理请求概念来执行此操作。
我不明白,我怎样才能创建 jsonobjects。
我在一些帖子中看到,我们一次不能发布超过 10 个帖子。我对这个 Batch Request 概念没有太多想法。
您可以使用以下代码在连续请求之间创建延迟。
int count = 10; new Timer().schedule(new TimerTask() { @Override public void run() { if (count>=10) { this.cancel(); } MainActivity.this.runOnUiThread(new Runnable() { public void run() { //Do the facebook request. } }); } }, 1000 , 1000);