Describe the bug A clear and concise description of what the bug is.
`Error parsing error response: Expecting value: line 1 column 1 (char 0) Error is >> Bad Request
Something went bad. Please retry or send an issue on https://github.com/b3nab/instapy-cli
Traceback (most recent call last): File “instagram.py”, line 9, in <module> cli.upload(image, text) File “/Users/vladartym/.pyenv/versions/3.7.4/lib/python3.7/site-packages/instapy_cli/cli.py”, line 153, in upload raise IOError(“Unable to upload.”) OSError: Unable to upload. `
To Reproduce Code to reproduce the behavior:
`from instapy_cli import client
username = ‘hello’ password = ‘****’ image = ‘ready/vladartym.jpg’ text = ‘This will be the caption of your photo.’ + ‘\r\n’ + ‘You can also use hashtags! #hash #tag #now’
with client(username, password) as cli: cli.upload(image, text)`
#code here
Expected behavior A clear and concise description of what you expected to happen.
code not working.
Logs If there are any errors or exceptions, add the logs to help explain your problem.
Env (please complete the following information):
- OS: [e.g. macOS]
- Python: [e.g. 3.6]
- instapy-cli Version: [e.g. 0.0.9.0]
Additional context Add any other context about the problem here.
- Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:8
@vladartym For login Yes. For media uploads No.
Getting - OSError: Unable to upload.
this is My code -
from instapy_cli import client
import ssl ssl._create_default_https_context = ssl._create_unverified_context
username = ‘’ password = '’ image = ‘posts/demo2.jpg’
with client(username, password) as cli: cli.upload(image)