Instagram自动化运营

​ 作为一个程序员,能够用代码解决的事情绝不应该人工去解决。运营Instagram账号就是一个很好的例子:每天坚持发内容,并且需要给相关的内容点赞、评论等等。平时工作繁忙,很容易忘记发当天的内容,于是我开始着手把运营Instagram账号进行自动化,从而让自己有更多的时间做更有意义的事情。
​ 在github上有很多关于Instagram API的项目,我按照自己最熟悉的Java语言选择了instagram4j。

需求分析

  1. 定时发帖功能,我尽量坚持每天在Instagram上发帖,发帖时间大概在晚九点左右。可以采用Spring boot的定时任务功能来实现;
  2. 定时点赞功能,希望能够对自己感兴趣的内容中进行自动点赞,以增强和更多人的互动。
  3. 尽量节省云服务器的开销,云服务器已经过了可以薅羊毛的阶段,现有的商用云服务器都比较昂贵。正巧手头有一台吃灰很久了的树莓派,整个自动化脚本可以跑在树莓派上。

代码片段

登陆逻辑

​ 众所周知,国内的网络无法访问Instagram,因此需要自行架设代理。因此在模拟Instagram登陆逻辑中,要注意设置本地的代理端口。

private Instagram4j initial() throws Exception {
        Instagram4j instagram = Instagram4j
                .builder()
                .username("username")
                .password("password")
                .proxy(new HttpHost("localhost", 1080, "http"))
                .build();
        instagram.setup();

        InstagramLoginResult loginResult = instagram.login();
        if ("fail".equals(loginResult.getStatus())) {
            log.error("Ins initial login error, InstagramLoginResult: {}", JSON.toJSONString(loginResult));
            throw new Exception("Ins login error");
        }
        log.info("Ins login My userId is " + instagram.getUserId());
        return instagram;
    }

定时点赞

​ 定时点赞功能是结合hashtag(标签)聚合页实现的,首先要找到自己感兴趣的标签列表。通过Spring boot的定时任务功能完成每半个小时一次的自动点赞功能。

@Scheduled(initialDelay = 100, fixedRate = 30 * 60 * 1000)
private void autoLike() {

    try {
        if (instagram == null) {
            instagram = initial();
        }

        for (String tag : tagList) {
            // Get feed for a hash tag
            InstagramFeedResult tagFeed = instagram.sendRequest(new InstagramTagFeedRequest(tag));

            // test how many items in a tag feed
            log.info("Ins autoLike get: {} in tag: {}", tagFeed.getItems().size(), tag);
            for (InstagramFeedItem feedItem : tagFeed.getItems()) {
                // random wait, DO NOT BE A SPAM!!!
                randomWait(3L, 6L);
                // Perform a like operation for a media
                final InstagramLikeResult instagramLikeResult = instagram.sendRequest(new InstagramLikeRequest(feedItem.getPk()));
                if (!"ok".equals(instagramLikeResult.getStatus())) {
                    log.error("Ins autoLike instagramLikeResult: {}", JSON.toJSONString(instagramLikeResult));
                }
                // log the liked post's caption
                String caption = (String) feedItem.getCaption().get("text");
                if (caption.length() > 5) {
                    caption = caption.substring(0, 5);
                }
                log.info("Ins autoLike success for: {}", caption);
            }
        }

    } catch (Exception e) {
        log.error("Ins error, ", e);
    }
}

TODO

定时发帖功能和运行在树莓派仍在开发中,未完待续。

你可能感兴趣的:(Instagram自动化运营)