Last active
January 16, 2021 22:37
-
-
Save knishioka/fdc6501923c9b7db218fc63febd74299 to your computer and use it in GitHub Desktop.
moneyforward login attempt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
s = requests.Session() | |
url = "https://id.moneyforward.com/sign_in" | |
payload = {"mfid_user[email]": "[email protected]", "mfid_user[password]": "barbaz"} | |
s.post(url, data=payload) | |
res = s.get("https://moneyforward.com/bs/portfolio") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment