2

我有我所有朋友的 facebook id。所以我只想在他们的墙上张贴(信息和图片)。

是否有可能做到这一点?

我使用以下代码在墙上发布

 String res=     UrltoValue.getValuefromUrl("https://graph.facebook.com/"+Login.facebookid+"/feed?access_token="+accesstoken+"&method="+"post"+"&message="+strFullMessage.replaceAll(" ", "%20")+"&source="+imageUrl);

我可以使用循环在多个朋友墙上发帖吗?

我读到这样做是垃圾邮件。有没有应用程序做这种要求?

请帮忙

谢谢

4

1 回答 1

2

这是创建延迟的示例代码

首先在类级别创建一个计数器变量

public int  counter = 0;

然后使用此代码创建一个可重复的计数器

 final int postCount = 100;

    new Timer().schedule(new TimerTask() {

    @Override
    public void run() {
        //Send message here ;

        counter +=1;
        if(counter>=postCount){
            cancel();//stops the timer
        }


    }
}, 1000,3000);

第一个参数(1000)是定时器的启动延迟(以毫秒为单位),第二个参数(3000)用于设置每个重复运行动作之间的后续延迟。

于 2012-12-11T07:35:40.513 回答