-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] #92
Comments
Hey @vladartym, We did a quick check and this issue looks very darn similar to This could be a coincidence, but if any of these issues solves your problem then I did a good job 😄 If not, the maintainers will get to this issue shortly. Cheers, |
Getting - OSError: Unable to upload.this is My code - from instapy_cli import client import ssl username = '' with client(username, password) as cli: |
@imShub is that code working for you? |
@vladartym For login Yes. For media uploads No. |
@imShub have you found any alternatives? |
@vladartym not now. |
@imShub @vladartym even though i'm facing same error and i got a new error Something went bad. |
I think this doesn't work anymore. |
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
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):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: