programm/service just to scedule posts?

Hobbygamer

Newbie
Joined
Oct 9, 2019
Messages
7
Reaction score
3
Hey,

was looking around, but mostly this kind of services are combined with f/uf, feature I dont need.
Can somebody give me an advise?
 
If you like the price of free, and you're comfortable with a little code, you could give instapy-cli a look. It's a python library for posting to instagram. You definitely want to create the login cookie first, otherwise it will only post once before hitting a verification checkpoint, which you can't finish. There's lots of examples on github.

This is what making a post looks like. You could put it on a sleep timer, or pause until, etc. I realize this might be a little advanced, but it gives you ultimate flexibility.

Code:
from instapy_cli import client

username = 'USERNAME'
password = 'PASSWORD'
image = 'docs/image-sample-upload.jpg'
text = 'This will be the caption of your photo.' + '\r\n' + 'You can also use hashtags! #hash #tag #now'
cookie_file = 'USERNAME_ig.json'
with client(username, password, cookie_file=cookie_file) as cli:
    cli.upload(image, text)
 
Creator Studio by Facebook is the ultimate tool for the mission, dear buddy!
 
Back
Top