NyaMisty / ipatool-py

IPATool-py: download ipa easily
https://drafts.misty.moe/ipatool-py-5848aa887aff4bc49fad6dc495a6578f
501 stars 126 forks source link

Can't sign in, 2FA code gets recognized as a separate event? #54

Closed MWRevamped closed 2 months ago

MWRevamped commented 2 months ago

python3 main.py download -i 333903271 -e user@gmail.com -p password!309667 zsh: no such event: 309667

MWRevamped commented 2 months ago

could it be because of the exclamation mark inside the password?

MWRevamped commented 2 months ago

it was the exclamation, turns out zsh uses it for history expansion, if anyone else is having this issue on Mac use

setopt nobanghist

in terminal to get rid of this stupid thing.

davipt commented 2 months ago

Always wrap strings with quotes. Typically double quotes are enough, unless they include variables ($), or stuff, and exclamation points. Single quotes solves that.